mirror of
https://github.com/tc39/test262.git
synced 2025-05-09 09:20:30 +02:00
Limit tests in `language/expressions/call/` and `built-ins/eval/` to only assert details that are directly related to the invocation pattern. Re-organize all other tests within the `language/eval-code/` directory, further categorizing each as `direct` or `indirect` as appropriate. Remove the extraneous "executable" flag from those files which carried it.
21 lines
434 B
JavaScript
21 lines
434 B
JavaScript
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es5id: 10.4.2-2-c-1
|
|
description: >
|
|
Direct val code in non-strict mode - can instantiate variable in
|
|
calling context
|
|
flags: [noStrict]
|
|
---*/
|
|
|
|
function testcase() {
|
|
var x = 0;
|
|
function inner() {
|
|
eval("var x = 1");
|
|
assert.sameValue(x, 1, "x");
|
|
}
|
|
inner();
|
|
}
|
|
testcase();
|