- File:
-
- 1 edited
-
translator/SynTree/CompoundStmt.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
translator/SynTree/CompoundStmt.cc
rc11e31c rb1a6d6b 11 11 #include <functional> 12 12 13 using std::string; 14 using std::endl;13 #include <iostream> 14 using namespace std; 15 15 16 16 CompoundStmt::CompoundStmt( std::list<Label> labels ) … … 33 33 CompoundStmt::print( std::ostream &os, int indent ) 34 34 { 35 os << "\r" << string(indent, ' ') << "CompoundStmt Statement" << endl ;36 printAll( kids, os, indent + 4);35 os << "\r" << string(indent, ' ') << "CompoundStmt" << endl ; 36 printAll( kids, os, indent+2 ); 37 37 } 38 38
Note:
See TracChangeset
for help on using the changeset viewer.