summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-06-06 11:15:28 -0400
committerAdrian Thurston <thurston@complang.org>2015-06-06 11:15:28 -0400
commit5a5cf0547b01d3c95dfa00b8f36f93a5143e25a7 (patch)
tree7406f2885b5fabb8b7e79a869ea64c0b1d17bf39 /src/parser.h
parent78ee9d0a8cc87c4d8cafae47b966e0bddf8d3021 (diff)
downloadcolm-5a5cf0547b01d3c95dfa00b8f36f93a5143e25a7.tar.gz
replacing list and map with vlist and vmap
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index 5909d55f..8843aad6 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -162,6 +162,14 @@ struct BaseParser
void popScope();
virtual void go( long activeRealm ) = 0;
+
+ BstSet<String, CmpStr> genericElDefined;
+
+ NamespaceQual *emptyNspaceQual()
+ {
+ return NamespaceQual::cons( curNspace() );
+ }
+
};
#endif