Create AST nodes for multiplicative expressions.

This commit is contained in:
Roberto Raggi
2010-11-11 15:25:19 +01:00
parent 701ff3887d
commit b311703234
3 changed files with 324 additions and 318 deletions

View File

@@ -48,7 +48,10 @@ public:
List<AST *> *ast_list;
Declaration *declaration;
List<Declaration *> *declaration_list;
Expression *expression;
List<Expression *> *expression_list;
TranslationUnit *translation_unit;
// ### ast nodes...
};
Parser(Engine *engine, const char *source, unsigned size, int variant);