Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    rc453ac4 rb9be000b  
    259259%type<sn> iteration_statement                   jump_statement
    260260%type<sn> expression_statement                  asm_statement
    261 %type<sn> with_statement
    262 %type<en> with_clause_opt
     261%type<sn> with_statement                                with_clause_opt
    263262%type<sn> exception_statement                   handler_clause                          finally_clause
    264263%type<catch_kind> handler_key
     
    24182417                { $$ = nullptr; }
    24192418        | WITH '(' tuple_expression_list ')'
    2420                 { $$ = $3; }
     2419                { $$ = new StatementNode( build_with( $3, nullptr ) ); }
    24212420        ;
    24222421
Note: See TracChangeset for help on using the changeset viewer.