Changes in src/Parser/ParseNode.h [374cb117:f135b50]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r374cb117 rf135b50 235 235 static DeclarationNode * newFunction( const std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body ); 236 236 static DeclarationNode * newAggregate( AggregateDecl::Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body ); 237 static DeclarationNode * newEnum( const std::string * name, DeclarationNode * constants, bool body );237 static DeclarationNode * newEnum( const std::string * name, DeclarationNode * constants, bool body, bool typed ); 238 238 static DeclarationNode * newEnumConstant( const std::string * name, ExpressionNode * constant ); 239 static DeclarationNode * newEnumValueGeneric( const std::string * name, InitializerNode * init );240 239 static DeclarationNode * newName( const std::string * ); 241 240 static DeclarationNode * newFromTypeGen( const std::string *, ExpressionNode * params );
Note:
See TracChangeset
for help on using the changeset viewer.