2015-10-12 14:30:46 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Var-let conflict in a function throws, even if the var is in an eval
|
|
|
|
|
|
|
|
// Throws at the top level of a function
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
let x = 1;
|
|
|
|
eval('var x');
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// If the eval is in its own block scope, throws
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
let y = 1;
|
|
|
|
{ eval('var y'); }
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// If the let is in its own block scope, with the eval, throws
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
{
|
|
|
|
let x = 1;
|
|
|
|
eval('var x');
|
|
|
|
}
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// Legal if the let is no longer visible
|
2015-11-13 21:03:45 +00:00
|
|
|
assertDoesNotThrow(function() {
|
|
|
|
{
|
|
|
|
let x = 1;
|
|
|
|
}
|
|
|
|
eval('var x');
|
|
|
|
});
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// All the same works for const:
|
|
|
|
// Throws at the top level of a function
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
const x = 1;
|
|
|
|
eval('var x');
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// If the eval is in its own block scope, throws
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
const y = 1;
|
|
|
|
{ eval('var y'); }
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// If the const is in its own block scope, with the eval, throws
|
2015-11-13 21:03:45 +00:00
|
|
|
assertThrows(function() {
|
|
|
|
{
|
|
|
|
const x = 1;
|
|
|
|
eval('var x');
|
|
|
|
}
|
2016-06-21 20:17:53 +00:00
|
|
|
}, SyntaxError);
|
2015-10-12 14:30:46 +00:00
|
|
|
|
|
|
|
// Legal if the const is no longer visible
|
2015-11-13 21:03:45 +00:00
|
|
|
assertDoesNotThrow(function() {
|
|
|
|
{
|
|
|
|
const x = 1;
|
|
|
|
}
|
|
|
|
eval('var x');
|
|
|
|
});
|
2015-10-12 14:30:46 +00:00
|
|
|
|
2016-08-02 20:21:55 +00:00
|
|
|
// The same should work for lexical function declarations:
|
|
|
|
// If the const is in its own block scope, with the eval, throws
|
|
|
|
assertThrows(function() {
|
|
|
|
{
|
|
|
|
function x() {}
|
|
|
|
eval('var x');
|
|
|
|
}
|
|
|
|
}, SyntaxError);
|
|
|
|
|
|
|
|
// If the eval is in its own block scope, throws
|
|
|
|
assertThrows(function() {
|
|
|
|
{
|
|
|
|
function y() {}
|
|
|
|
{ eval('var y'); }
|
|
|
|
}
|
|
|
|
}, SyntaxError);
|
|
|
|
|
2015-10-12 14:30:46 +00:00
|
|
|
// In global scope
|
2015-11-13 21:03:45 +00:00
|
|
|
let caught = false;
|
2015-10-12 14:30:46 +00:00
|
|
|
try {
|
|
|
|
let z = 1;
|
2015-11-13 21:03:45 +00:00
|
|
|
eval('var z');
|
2015-10-12 14:30:46 +00:00
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
|
|
|
assertTrue(caught);
|
|
|
|
|
|
|
|
// Let declarations beyond a function boundary don't conflict
|
|
|
|
caught = false;
|
|
|
|
try {
|
|
|
|
let a = 1;
|
|
|
|
(function() {
|
|
|
|
eval('var a');
|
|
|
|
})();
|
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
|
|
|
assertFalse(caught);
|
|
|
|
|
|
|
|
// var across with doesn't conflict
|
|
|
|
caught = false;
|
|
|
|
try {
|
|
|
|
(function() {
|
|
|
|
with ({x: 1}) {
|
2015-11-13 21:03:45 +00:00
|
|
|
eval("var x");
|
2015-10-12 14:30:46 +00:00
|
|
|
}
|
|
|
|
})();
|
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
|
|
|
assertFalse(caught);
|
|
|
|
|
|
|
|
// var can still conflict with let across a with
|
|
|
|
caught = false;
|
|
|
|
try {
|
|
|
|
(function() {
|
|
|
|
let x;
|
|
|
|
with ({x: 1}) {
|
2015-11-13 21:03:45 +00:00
|
|
|
eval("var x");
|
2015-10-12 14:30:46 +00:00
|
|
|
}
|
|
|
|
})();
|
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
|
|
|
assertTrue(caught);
|
|
|
|
|
|
|
|
// Functions declared in eval also conflict
|
|
|
|
caught = false
|
|
|
|
try {
|
|
|
|
(function() {
|
|
|
|
{
|
|
|
|
let x = 1;
|
|
|
|
eval('function x() {}');
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
|
|
|
assertTrue(caught);
|
|
|
|
|
|
|
|
caught = false
|
|
|
|
try {
|
|
|
|
(function() {
|
|
|
|
{
|
|
|
|
let x = 1;
|
|
|
|
eval('{ function x() {} }');
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
} catch (e) {
|
|
|
|
caught = true;
|
|
|
|
}
|
2016-07-14 22:41:42 +00:00
|
|
|
assertFalse(caught);
|