test262/test/language/eval-code/direct/var-env-var-non-strict.js
Mike Pennisi 7630e1763d Re-organize tests for eval
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.
2016-04-25 16:36:36 -04:00

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();