Changes in / [fa463f1:32a2a99]
- Location:
- src/SynTree
- Files:
-
- 8 edited
-
Declaration.cc (modified) (1 diff)
-
Declaration.h (modified) (1 diff)
-
Expression.cc (modified) (1 diff)
-
Expression.h (modified) (1 diff)
-
Statement.cc (modified) (1 diff)
-
Statement.h (modified) (1 diff)
-
Type.cc (modified) (1 diff)
-
Type.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
rfa463f1 r32a2a99 56 56 } 57 57 58 std::ostream & operator<<( std::ostream & out, constDeclaration * decl ) {58 std::ostream & operator<<( std::ostream & out, Declaration * decl ) { 59 59 decl->print( out ); 60 60 return out; -
src/SynTree/Declaration.h
rfa463f1 r32a2a99 279 279 }; 280 280 281 std::ostream & operator<<( std::ostream & out, constDeclaration * decl );281 std::ostream & operator<<( std::ostream & out, Declaration * decl ); 282 282 283 283 #endif // DECLARATION_H -
src/SynTree/Expression.cc
rfa463f1 r32a2a99 541 541 } 542 542 543 std::ostream & operator<<( std::ostream & out, constExpression * expr ) {543 std::ostream & operator<<( std::ostream & out, Expression * expr ) { 544 544 expr->print( out ); 545 545 return out; -
src/SynTree/Expression.h
rfa463f1 r32a2a99 653 653 }; 654 654 655 std::ostream & operator<<( std::ostream & out, constExpression * expr );655 std::ostream & operator<<( std::ostream & out, Expression * expr ); 656 656 657 657 #endif // EXPRESSION_H -
src/SynTree/Statement.cc
rfa463f1 r32a2a99 387 387 } 388 388 389 std::ostream & operator<<( std::ostream & out, constStatement * statement ) {389 std::ostream & operator<<( std::ostream & out, Statement * statement ) { 390 390 statement->print( out ); 391 391 return out; -
src/SynTree/Statement.h
rfa463f1 r32a2a99 395 395 396 396 397 std::ostream & operator<<( std::ostream & out, constStatement * statement );397 std::ostream & operator<<( std::ostream & out, Statement * statement ); 398 398 399 399 #endif // STATEMENT_H -
src/SynTree/Type.cc
rfa463f1 r32a2a99 84 84 } 85 85 86 std::ostream & operator<<( std::ostream & out, constType * type ) {86 std::ostream & operator<<( std::ostream & out, Type * type ) { 87 87 type->print( out ); 88 88 return out; -
src/SynTree/Type.h
rfa463f1 r32a2a99 481 481 } 482 482 483 std::ostream & operator<<( std::ostream & out, constType * type );483 std::ostream & operator<<( std::ostream & out, Type * type ); 484 484 485 485 #endif // TYPE_H
Note:
See TracChangeset
for help on using the changeset viewer.