Changeset 10e81ac for src/SynTree
- Timestamp:
- May 27, 2016, 4:16:53 PM (9 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, with_gc
- Children:
- 725f36f5
- Parents:
- aad5a48 (diff), 677c1be (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/SynTree/ApplicationExpr.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ApplicationExpr.cc
raad5a48 r10e81ac 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.