diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2016-02-16 11:31:20 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2016-02-16 11:33:58 +0900 |
| commit | da96c335fe095b13bb1cb50be73fb42346aaf3f4 (patch) | |
| tree | a8c0985544d316313c601283357f2a7c578f9345 /mrbgems/mruby-compiler/core/parse.y | |
| parent | 5596d14c00e4b639f8d6228a477850a2e62c21ab (diff) | |
| download | mruby-da96c335fe095b13bb1cb50be73fb42346aaf3f4.tar.gz mruby-da96c335fe095b13bb1cb50be73fb42346aaf3f4.zip | |
syntax error in interpolated symbol; fixed #3108
Diffstat (limited to 'mrbgems/mruby-compiler/core/parse.y')
| -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 5351c32f3..fbef74334 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -2829,7 +2829,7 @@ symbol : basic_symbol { $$ = new_sym(p, $1); } - | tSYMBEG tSTRING_BEG string_interp tSTRING + | tSYMBEG tSTRING_BEG string_rep tSTRING { p->lstate = EXPR_END; $$ = new_dsym(p, push($3, $4)); |
