Woo! Very basic lambdas!

This commit is contained in:
Nathan Braswell
2015-05-25 22:03:24 -04:00
parent 920a9ab81f
commit 88bab7f0d7
5 changed files with 49 additions and 5 deletions

View File

@@ -68,6 +68,7 @@ class ASTTransformation: public NodeTransformation<Symbol,ASTData> {
std::map<std::string, std::vector<NodeTree<ASTData>*>> languageLevelReservedWords;
std::map<std::string, std::vector<NodeTree<ASTData>*>> languageLevelOperators;
NodeTree<ASTData>* topScope; //maintained for templates that need to add themselves to the top scope no matter where they are instantiated
int lambdaID = 0;
};
#endif