Changeset baf7fee
- Timestamp:
- Dec 18, 2015, 2:43:06 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, string, with_gc
- Children:
- ae63a18
- Parents:
- 000b914
- Location:
- src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/PolyMutator.h
r000b914 rbaf7fee 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Fri Aug 14 15:27:38201513 // Update Count : 412 // Last Modified On : Tue Dec 08 15:19:05 2015 13 // Update Count : 5 14 14 // 15 15 … … 51 51 virtual void doBeginScope() {} 52 52 virtual void doEndScope() {} 53 54 static void makeTyVarMap( Type *type, TyVarMap &tyVarMap ); 53 55 protected: 54 56 void mutateStatementList( std::list< Statement* > &statements ); 55 57 Statement* mutateStatement( Statement *stmt ); 56 58 Expression* mutateExpression( Expression *expr ); 57 static void makeTyVarMap( Type *type, TyVarMap &tyVarMap );58 59 59 60 TyVarMap scopeTyVars; -
src/SynTree/Declaration.cc
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Mon Jul 13 17:58:38201513 // Update Count : 1 011 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:08:29 2015 13 // Update Count : 12 14 14 // 15 15 … … 55 55 } 56 56 57 std::ostream & operator<<( std::ostream & out, Declaration * decl ) { 58 decl->print( out ); 59 return out; 60 } 61 62 57 63 // Local Variables: // 58 64 // tab-width: 4 // -
src/SynTree/Declaration.h
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Mon Jul 13 18:15:59201513 // Update Count : 2811 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:08:22 2015 13 // Update Count : 32 14 14 // 15 15 … … 259 259 }; 260 260 261 std::ostream & operator<<( std::ostream & out, Declaration * decl ); 262 261 263 #endif // DECLARATION_H 262 264 -
src/SynTree/Expression.cc
r000b914 rbaf7fee 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Sep 02 12:07:10201513 // Update Count : 3 312 // Last Modified On : Wed Dec 09 14:10:29 2015 13 // Update Count : 34 14 14 // 15 15 … … 376 376 } 377 377 378 std::ostream & operator<<( std::ostream & out, Expression * expr ) { 379 expr->print( out ); 380 return out; 381 } 382 378 383 // Local Variables: // 379 384 // tab-width: 4 // -
src/SynTree/Expression.h
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Fri Jul 24 13:49:28201513 // Update Count : 1 811 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:10:21 2015 13 // Update Count : 19 14 14 // 15 15 … … 512 512 }; 513 513 514 std::ostream & operator<<( std::ostream & out, Expression * expr ); 515 514 516 #endif // EXPRESSION_H 515 517 -
src/SynTree/Statement.cc
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat Jul 25 12:19:50201513 // Update Count : 5 311 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:09:34 2015 13 // Update Count : 54 14 14 // 15 15 … … 337 337 } 338 338 339 std::ostream & operator<<( std::ostream & out, Statement * statement ) { 340 statement->print( out ); 341 return out; 342 } 343 339 344 // Local Variables: // 340 345 // tab-width: 4 // -
src/SynTree/Statement.h
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat Jul 25 18:25:37201513 // Update Count : 4 411 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:09:24 2015 13 // Update Count : 46 14 14 // 15 15 … … 396 396 }; 397 397 398 std::ostream & operator<<( std::ostream & out, Statement * statement ); 399 398 400 #endif // STATEMENT_H 399 401 -
src/SynTree/Type.cc
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Thu Jul 9 16:45:13201513 // Update Count : 311 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:08:48 2015 13 // Update Count : 4 14 14 // 15 15 … … 80 80 } 81 81 82 std::ostream & operator<<( std::ostream & out, Type * type ) { 83 type->print( out ); 84 return out; 85 } 86 82 87 // Local Variables: // 83 88 // tab-width: 4 // -
src/SynTree/Type.h
r000b914 rbaf7fee 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Fri Nov 20 12:54:09201513 // Update Count : 1 511 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Dec 09 14:08:41 2015 13 // Update Count : 17 14 14 // 15 15 … … 463 463 } 464 464 465 std::ostream & operator<<( std::ostream & out, Type * type ); 466 465 467 #endif // TYPE_H 466 468
Note: See TracChangeset
for help on using the changeset viewer.