Changes in src/Parser/ParseNode.h [c8dfcd3:3b58d91]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
rc8dfcd3 r3b58d91 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Aug 28 21:14:51201613 // Update Count : 5 7512 // Last Modified On : Mon Aug 29 21:45:43 2016 13 // Update Count : 583 14 14 // 15 15 … … 165 165 166 166 Expression *build_cast( DeclarationNode * decl_node, ExpressionNode *expr_node ); 167 Expression *build_fieldSel( ExpressionNode *expr_node, NameExpr*member );168 Expression *build_pfieldSel( ExpressionNode *expr_node, NameExpr*member );167 Expression *build_fieldSel( ExpressionNode *expr_node, Expression *member ); 168 Expression *build_pfieldSel( ExpressionNode *expr_node, Expression *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 struct Variable_t { 299 DeclarationNode::TypeClass tyClass; 300 std::string name; 301 DeclarationNode * assertions; 302 }; 303 Variable_t variable; 304 305 struct Attr_t { 306 std::string name; 307 ExpressionNode * expr; 308 DeclarationNode * type; 309 }; 310 Attr_t attr; 311 312 BuiltinType builtin; 313 292 314 TypeData *type; 293 315 std::string name;
Note:
See TracChangeset
for help on using the changeset viewer.