Changeset 3906301 for src/SynTree
- Timestamp:
- Aug 29, 2016, 5:58:17 PM (8 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, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- fa463f1
- Parents:
- 486341f
- git-author:
- Rob Schluntz <rschlunt@…> (08/25/16 11:09:18)
- git-committer:
- Rob Schluntz <rschlunt@…> (08/29/16 17:58:17)
- Location:
- src/SynTree
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
r486341f r3906301 56 56 } 57 57 58 std::ostream & operator<<( std::ostream & out, Declaration * decl ) {58 std::ostream & operator<<( std::ostream & out, const Declaration * decl ) { 59 59 decl->print( out ); 60 60 return out; -
src/SynTree/Declaration.h
r486341f r3906301 279 279 }; 280 280 281 std::ostream & operator<<( std::ostream & out, Declaration * decl );281 std::ostream & operator<<( std::ostream & out, const Declaration * decl ); 282 282 283 283 #endif // DECLARATION_H -
src/SynTree/Expression.cc
r486341f r3906301 541 541 } 542 542 543 std::ostream & operator<<( std::ostream & out, Expression * expr ) {543 std::ostream & operator<<( std::ostream & out, const Expression * expr ) { 544 544 expr->print( out ); 545 545 return out; -
src/SynTree/Expression.h
r486341f r3906301 653 653 }; 654 654 655 std::ostream & operator<<( std::ostream & out, Expression * expr );655 std::ostream & operator<<( std::ostream & out, const Expression * expr ); 656 656 657 657 #endif // EXPRESSION_H -
src/SynTree/Statement.cc
r486341f r3906301 387 387 } 388 388 389 std::ostream & operator<<( std::ostream & out, Statement * statement ) {389 std::ostream & operator<<( std::ostream & out, const Statement * statement ) { 390 390 statement->print( out ); 391 391 return out; -
src/SynTree/Statement.h
r486341f r3906301 395 395 396 396 397 std::ostream & operator<<( std::ostream & out, Statement * statement );397 std::ostream & operator<<( std::ostream & out, const Statement * statement ); 398 398 399 399 #endif // STATEMENT_H -
src/SynTree/Type.cc
r486341f r3906301 84 84 } 85 85 86 std::ostream & operator<<( std::ostream & out, Type * type ) {86 std::ostream & operator<<( std::ostream & out, const Type * type ) { 87 87 type->print( out ); 88 88 return out; -
src/SynTree/Type.h
r486341f r3906301 480 480 } 481 481 482 std::ostream & operator<<( std::ostream & out, Type * type );482 std::ostream & operator<<( std::ostream & out, const Type * type ); 483 483 484 484 #endif // TYPE_H
Note: See TracChangeset
for help on using the changeset viewer.