Changes in src/SynTree/ApplicationExpr.cc [89231bc:9554d9b]
- File:
-
- 1 edited
-
src/SynTree/ApplicationExpr.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ApplicationExpr.cc
r89231bc r9554d9b 64 64 65 65 void ApplicationExpr::print( std::ostream &os, int indent ) const { 66 os << "Application of" << std::endl << std::string(indent , ' ');66 os << "Application of" << std::endl << std::string(indent+2, ' '); 67 67 function->print( os, indent+2 ); 68 68 if ( ! args.empty() ) {
Note:
See TracChangeset
for help on using the changeset viewer.