Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/StatementNode.cc

    re67991f rf271bdd  
    317317} // build_waitfor_timeout
    318318
    319 Statement * build_with( ExpressionNode * exprs, StatementNode * stmt ) {
     319WithStmt * build_with( ExpressionNode * exprs, StatementNode * stmt ) {
    320320        std::list< Expression * > e;
    321321        buildMoveList( exprs, e );
    322322        Statement * s = maybeMoveBuild<Statement>( stmt );
    323         return new DeclStmt( new WithStmt( e, s ) );
     323        return new WithStmt( e, s );
    324324} // build_with
    325325
Note: See TracChangeset for help on using the changeset viewer.