Changeset 8e9cbb2 for src/SynTree
- Timestamp:
- Jul 4, 2016, 9:24:11 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, 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:
- 7fe4cc3e
- Parents:
- 0a2c1f1
- Location:
- src/SynTree
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SynTree/Declaration.h ¶
r0a2c1f1 r8e9cbb2 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Fri May 06 16:26:12201613 // Update Count : 3 311 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Jun 30 21:17:24 2016 13 // Update Count : 38 14 14 // 15 15 … … 41 41 void set_isNoreturn( bool newValue ) { isNoreturn = newValue; } 42 42 UniqueId get_uniqueId() const { return uniqueId; } 43 bool get_extension() const { return extension; } 44 Declaration *set_extension( bool exten ) { extension = exten; return this; } 43 45 44 46 void fixUniqueId( void ); … … 57 59 bool isInline, isNoreturn; 58 60 UniqueId uniqueId; 61 bool extension = false; 59 62 }; 60 63 -
TabularUnified src/SynTree/Expression.h ¶
r0a2c1f1 r8e9cbb2 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jun 8 17:05:30201613 // Update Count : 2 212 // Last Modified On : Mon Jul 4 14:45:32 2016 13 // Update Count : 23 14 14 // 15 15 … … 39 39 void set_argName( Expression *name ) { argName = name; } 40 40 bool get_extension() const { return extension; } 41 void set_extension( bool exten ) { extension = exten; }41 Expression * set_extension( bool exten ) { extension = exten; return this; } 42 42 43 43 virtual Expression *clone() const = 0;
Note: See TracChangeset
for help on using the changeset viewer.