Changeset 7305915 for src/Parser
- Timestamp:
- Jun 29, 2016, 2:29:59 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 87b5bf0
- Parents:
- c017d5b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
rc017d5b r7305915 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 13 16:04:47201613 // Update Count : 24 012 // Last Modified On : Mon Jun 27 23:28:10 2016 13 // Update Count : 242 14 14 // 15 15 … … 425 425 ExpressionNode *get_enumeratorValue() const { return enumeratorValue; } 426 426 427 bool get_extension() const { return extension; } 428 DeclarationNode *set_extension( bool exten ) { extension = exten; return this; } 429 427 430 DeclarationNode(); 428 431 ~DeclarationNode(); … … 440 443 bool hasEllipsis; 441 444 LinkageSpec::Type linkage; 445 bool extension = false; 442 446 443 447 static UniqueName anonymous; … … 476 480 void addDeclaration( DeclarationNode *newDecl ) { decl = newDecl; } 477 481 void setCatchRest( bool newVal ) { isCatchRest = newVal; } 482 483 bool get_extension() const { return extension; } 484 StatementNode *set_extension( bool exten ) { extension = exten; return this; } 478 485 479 486 std::string get_target() const; … … 495 502 DeclarationNode *decl; 496 503 bool isCatchRest; 504 bool extension = false; 497 505 }; // StatementNode 498 506
Note: See TracChangeset
for help on using the changeset viewer.