Home | History | Annotate | Download | only in mjsunit

Lines Matching full:eval

28 // Tests loading of properties across eval calls.
35 // Test loading across an eval call that does not shadow variables.
42 eval('1');
94 // Test loading across eval calls that do not shadow variables.
98 eval('1');
100 eval('1');
118 // Test loading across an eval call that shadows variables.
123 eval('var x = 3; var y = 4;');
126 eval('function local_function() { return "new_local"; }');
127 eval('function global_function() { return "new_nonglobal"; }');