Add more lax newline handling

This commit is contained in:
Danila Fedorin 2019-05-13 17:32:27 -07:00
parent 4bc44f6d43
commit 54f89e5dfb
1 changed files with 9 additions and 4 deletions

View File

@ -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