Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/StatementNode.cc

    r658fafe4 r00c32e9  
    417417}
    418418
     419
     420void NullStmtNode::print( ostream &os, int indent ) const {
     421        os << string( indent, ' ' ) << "Null Statement:" << endl;
     422}
     423
     424Statement *NullStmtNode::build() const {
     425        return new NullStmt;
     426}
     427
    419428// Local Variables: //
    420429// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.