[Bug #19549] Check for variables to be interpolated

This commit is contained in:
Nobuyoshi Nakada 2023-03-29 18:42:46 +09:00
parent 05aaff2191
commit bd046764e3
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2023-09-07 06:07:58 +00:00
2 changed files with 7 additions and 16 deletions

18
parse.y
View File

@ -5432,24 +5432,10 @@ string_dend : tSTRING_DEND
| END_OF_INPUT | END_OF_INPUT
; ;
string_dvar : tGVAR string_dvar : nonlocal_var
{ {
/*%%%*/ /*%%%*/
$$ = NEW_GVAR($1, &@$); if (!($$ = gettable(p, $1, &@$))) $$ = NEW_BEGIN(0, &@$);
/*% %*/
/*% ripper: var_ref!($1) %*/
}
| tIVAR
{
/*%%%*/
$$ = NEW_IVAR($1, &@$);
/*% %*/
/*% ripper: var_ref!($1) %*/
}
| tCVAR
{
/*%%%*/
$$ = NEW_CVAR($1, &@$);
/*% %*/ /*% %*/
/*% ripper: var_ref!($1) %*/ /*% ripper: var_ref!($1) %*/
} }

View File

@ -1443,6 +1443,11 @@ x = __ENCODING__
assert_equal(expected, obj.arg) assert_equal(expected, obj.arg)
end end
def test_ungettable_gvar
assert_syntax_error('$01234', /not valid to get/)
assert_syntax_error('"#$01234"', /not valid to get/)
end
=begin =begin
def test_past_scope_variable def test_past_scope_variable
assert_warning(/past scope/) {catch {|tag| eval("BEGIN{throw tag}; tap {a = 1}; a")}} assert_warning(/past scope/) {catch {|tag| eval("BEGIN{throw tag}; tap {a = 1}; a")}}