diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-10-30 13:17:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-11-08 09:50:48 +0900 |
| commit | 962776fe254f4372ab1190e33509fe7883597283 (patch) | |
| tree | 78febcbae190f0aa45a32e888f45526a2607cf18 | |
| parent | 0f64cb421e14cb240ccf4631924ea8d2493f22a8 (diff) | |
| download | mruby-962776fe254f4372ab1190e33509fe7883597283.tar.gz mruby-962776fe254f4372ab1190e33509fe7883597283.zip | |
Allow here-doc before closing parentheses; ref #4796
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index bae886e74..848d2a933 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -3722,7 +3722,7 @@ opt_nl : /* none */ | nl ; -rparen : opt_nl ')' +rparen : opt_terms ')' ; trailer : /* none */ |
