Changes in src/Parser/ParseNode.h [3b58d91:7d05e7e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r3b58d91 r7d05e7e 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 29 21:45:43201613 // Update Count : 58 312 // Last Modified On : Thu Sep 8 21:58:06 2016 13 // Update Count : 587 14 14 // 15 15 … … 165 165 166 166 Expression *build_cast( DeclarationNode * decl_node, ExpressionNode *expr_node ); 167 Expression *build_fieldSel( ExpressionNode *expr_node, Expression*member );168 Expression *build_pfieldSel( ExpressionNode *expr_node, Expression*member );167 Expression *build_fieldSel( ExpressionNode *expr_node, NameExpr *member ); 168 Expression *build_pfieldSel( ExpressionNode *expr_node, NameExpr *member ); 169 169 Expression *build_addressOf( ExpressionNode *expr_node ); 170 170 Expression *build_sizeOfexpr( ExpressionNode *expr_node ); … … 290 290 // bool buildFuncSpecifier( StorageClass key ) const; 291 291 292 struct Enumeration_t {293 std::string name;294 DeclarationNode * constants;295 };296 Enumeration_t enumeration;297 298 292 struct Variable_t { 299 293 DeclarationNode::TypeClass tyClass; … … 408 402 if ( result ) { 409 403 *out++ = result; 410 } else {411 404 } // if 412 405 } catch( SemanticError &e ) {
Note:
See TracChangeset
for help on using the changeset viewer.