Changes in src/Parser/ParseNode.h [90c3b1c:5721a6d]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r90c3b1c r5721a6d 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 14:00:06201613 // Update Count : 18 912 // Last Modified On : Mon Feb 1 13:32:32 2016 13 // Update Count : 184 14 14 // 15 15 … … 331 331 enum Aggregate { Struct, Union, Context }; 332 332 enum TypeClass { Type, Dtype, Ftype }; 333 enum BuiltinType { Valist };334 333 335 334 static const char *storageName[]; … … 339 338 static const char *aggregateName[]; 340 339 static const char *typeClassName[]; 341 static const char *builtinTypeName[];342 340 343 341 static DeclarationNode *newFunction( std::string *name, DeclarationNode *ret, DeclarationNode *param, StatementNode *body, bool newStyle = false ); … … 365 363 static DeclarationNode *newAttr( std::string *, ExpressionNode *expr ); 366 364 static DeclarationNode *newAttr( std::string *, DeclarationNode *type ); 367 static DeclarationNode *newBuiltinType( BuiltinType );368 365 369 366 DeclarationNode *addQualifiers( DeclarationNode *); … … 404 401 LinkageSpec::Type get_linkage() const { return linkage; } 405 402 DeclarationNode *extractAggregate() const; 406 ExpressionNode *get_enumeratorValue() const { return enumeratorValue; }407 403 408 404 DeclarationNode(); … … 417 413 std::list< std::string > attributes; 418 414 ExpressionNode *bitfieldWidth; 419 ExpressionNode *enumeratorValue;420 415 InitializerNode *initializer; 421 416 bool hasEllipsis;
Note:
See TracChangeset
for help on using the changeset viewer.