Add more lax newline handling
This commit is contained in:
parent
4bc44f6d43
commit
54f89e5dfb
13
parser.y
13
parser.y
|
@ -107,11 +107,16 @@ stmts
|
|||
| stmt { $$ = $1; }
|
||||
;
|
||||
|
||||
newlines
|
||||
: newlines NEWLINE
|
||||
|
|
||||
;
|
||||
|
||||
stmt
|
||||
: expr NEWLINE { $$ = concatenate($1, ";"); }
|
||||
| if { $$ = $1; }
|
||||
| while { $$ = $1; }
|
||||
| BREAK NEWLINE { $$ = new std::string("break;"); }
|
||||
: expr newlines { $$ = concatenate($1, ";"); }
|
||||
| if newlines { $$ = $1; }
|
||||
| while newlines { $$ = $1; }
|
||||
| BREAK newlines { $$ = new std::string("break;"); }
|
||||
;
|
||||
|
||||
expr
|
||||
|
|
Loading…
Reference in New Issue
Block a user