2011-09-01 12:31:18 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2014-11-25 14:48:27 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2011-09-01 12:31:18 +00:00
|
|
|
|
|
|
|
// Test for conflicting variable bindings.
|
|
|
|
|
2011-11-24 15:17:04 +00:00
|
|
|
"use strict";
|
|
|
|
|
2011-09-01 12:31:18 +00:00
|
|
|
function CheckException(e) {
|
|
|
|
var string = e.toString();
|
|
|
|
assertTrue(string.indexOf("has already been declared") >= 0 ||
|
2012-08-28 11:25:08 +00:00
|
|
|
string.indexOf("redeclaration") >= 0);
|
|
|
|
return 'Conflict';
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-09 11:35:05 +00:00
|
|
|
function TestGlobal(s,e) {
|
|
|
|
try {
|
|
|
|
return eval(s + e);
|
|
|
|
} catch (x) {
|
|
|
|
return CheckException(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-01 12:31:18 +00:00
|
|
|
function TestFunction(s,e) {
|
|
|
|
try {
|
2014-07-09 11:35:05 +00:00
|
|
|
return eval("(function(){" + s + " return " + e + "})")();
|
2011-09-01 12:31:18 +00:00
|
|
|
} catch (x) {
|
|
|
|
return CheckException(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function TestBlock(s,e) {
|
|
|
|
try {
|
2014-07-09 11:35:05 +00:00
|
|
|
return eval("(function(){ {" + s + "} return " + e + "})")();
|
2011-09-01 12:31:18 +00:00
|
|
|
} catch (x) {
|
|
|
|
return CheckException(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function TestAll(expected,s,opt_e) {
|
|
|
|
var e = "";
|
|
|
|
var msg = s;
|
2014-07-09 11:35:05 +00:00
|
|
|
if (opt_e) { e = opt_e; msg += opt_e; }
|
|
|
|
assertEquals(expected === 'LocalConflict' ? 'NoConflict' : expected,
|
|
|
|
TestGlobal(s,e), "global:'" + msg + "'");
|
|
|
|
assertEquals(expected === 'LocalConflict' ? 'NoConflict' : expected,
|
|
|
|
TestFunction(s,e), "function:'" + msg + "'");
|
|
|
|
assertEquals(expected === 'LocalConflict' ? 'Conflict' : expected,
|
|
|
|
TestBlock(s,e), "block:'" + msg + "'");
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function TestConflict(s) {
|
|
|
|
TestAll('Conflict', s);
|
2014-07-09 11:35:05 +00:00
|
|
|
TestAll('Conflict', 'eval("' + s + '");');
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function TestNoConflict(s) {
|
|
|
|
TestAll('NoConflict', s, "'NoConflict'");
|
2014-07-09 11:35:05 +00:00
|
|
|
TestAll('NoConflict', 'eval("' + s + '");', "'NoConflict'");
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 11:35:05 +00:00
|
|
|
function TestLocalConflict(s) {
|
|
|
|
TestAll('LocalConflict', s, "'NoConflict'");
|
|
|
|
TestAll('NoConflict', 'eval("' + s + '");', "'NoConflict'");
|
|
|
|
}
|
|
|
|
|
|
|
|
var letbinds = [ "let x;",
|
|
|
|
"let x = 0;",
|
|
|
|
"let x = undefined;",
|
|
|
|
"let x = function() {};",
|
|
|
|
"let x, y;",
|
|
|
|
"let y, x;",
|
|
|
|
"const x = 0;",
|
|
|
|
"const x = undefined;",
|
|
|
|
"const x = function() {};",
|
|
|
|
"const x = 2, y = 3;",
|
|
|
|
"const y = 4, x = 5;",
|
2015-08-12 18:42:48 +00:00
|
|
|
"class x { }",
|
2011-09-01 12:31:18 +00:00
|
|
|
];
|
2015-08-12 18:42:48 +00:00
|
|
|
function forCompatible(bind) {
|
|
|
|
return !bind.startsWith('class');
|
|
|
|
}
|
2014-07-09 11:35:05 +00:00
|
|
|
var varbinds = [ "var x;",
|
|
|
|
"var x = 0;",
|
|
|
|
"var x = undefined;",
|
|
|
|
"var x = function() {};",
|
|
|
|
"var x, y;",
|
|
|
|
"var y, x;",
|
2011-09-01 12:31:18 +00:00
|
|
|
];
|
2014-07-09 11:35:05 +00:00
|
|
|
var funbind = "function x() {}";
|
2011-09-01 12:31:18 +00:00
|
|
|
|
|
|
|
for (var l = 0; l < letbinds.length; ++l) {
|
|
|
|
// Test conflicting let/var bindings.
|
|
|
|
for (var v = 0; v < varbinds.length; ++v) {
|
|
|
|
// Same level.
|
2014-07-09 11:35:05 +00:00
|
|
|
TestConflict(letbinds[l] + varbinds[v]);
|
|
|
|
TestConflict(varbinds[v] + letbinds[l]);
|
2011-09-01 12:31:18 +00:00
|
|
|
// Different level.
|
2014-07-09 11:35:05 +00:00
|
|
|
TestConflict(letbinds[l] + '{' + varbinds[v] + '}');
|
|
|
|
TestConflict('{' + varbinds[v] +'}' + letbinds[l]);
|
|
|
|
TestNoConflict(varbinds[v] + '{' + letbinds[l] + '}');
|
|
|
|
TestNoConflict('{' + letbinds[l] + '}' + varbinds[v]);
|
|
|
|
// For loop.
|
2015-08-12 18:42:48 +00:00
|
|
|
if (forCompatible(letbinds[l])) {
|
|
|
|
TestConflict('for (' + letbinds[l] + '0;) {' + varbinds[v] + '}');
|
|
|
|
}
|
2014-07-09 11:35:05 +00:00
|
|
|
TestNoConflict('for (' + varbinds[v] + '0;) {' + letbinds[l] + '}');
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test conflicting let/let bindings.
|
|
|
|
for (var k = 0; k < letbinds.length; ++k) {
|
|
|
|
// Same level.
|
2014-07-09 11:35:05 +00:00
|
|
|
TestConflict(letbinds[l] + letbinds[k]);
|
|
|
|
TestConflict(letbinds[k] + letbinds[l]);
|
2011-09-01 12:31:18 +00:00
|
|
|
// Different level.
|
2014-07-09 11:35:05 +00:00
|
|
|
TestNoConflict(letbinds[l] + '{ ' + letbinds[k] + '}');
|
|
|
|
TestNoConflict('{' + letbinds[k] +'} ' + letbinds[l]);
|
|
|
|
// For loop.
|
2015-08-12 18:42:48 +00:00
|
|
|
if (forCompatible(letbinds[l])) {
|
|
|
|
TestNoConflict('for (' + letbinds[l] + '0;) {' + letbinds[k] + '}');
|
|
|
|
}
|
|
|
|
if (forCompatible(letbinds[k])) {
|
|
|
|
TestNoConflict('for (' + letbinds[k] + '0;) {' + letbinds[l] + '}');
|
|
|
|
}
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 11:35:05 +00:00
|
|
|
// Test conflicting function/let bindings.
|
|
|
|
// Same level.
|
|
|
|
TestConflict(letbinds[l] + funbind);
|
|
|
|
TestConflict(funbind + letbinds[l]);
|
|
|
|
// Different level.
|
|
|
|
TestNoConflict(letbinds[l] + '{' + funbind + '}');
|
|
|
|
TestNoConflict('{' + funbind + '}' + letbinds[l]);
|
|
|
|
TestNoConflict(funbind + '{' + letbinds[l] + '}');
|
|
|
|
TestNoConflict('{' + letbinds[l] + '}' + funbind);
|
|
|
|
// For loop.
|
2015-08-12 18:42:48 +00:00
|
|
|
if (forCompatible(letbinds[l])) {
|
|
|
|
TestNoConflict('for (' + letbinds[l] + '0;) {' + funbind + '}');
|
|
|
|
}
|
2014-07-09 11:35:05 +00:00
|
|
|
|
2011-09-01 12:31:18 +00:00
|
|
|
// Test conflicting parameter/let bindings.
|
2014-07-09 11:35:05 +00:00
|
|
|
TestConflict('(function(x) {' + letbinds[l] + '})();');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test conflicting function/var bindings.
|
|
|
|
for (var v = 0; v < varbinds.length; ++v) {
|
|
|
|
// Same level.
|
|
|
|
TestLocalConflict(varbinds[v] + funbind);
|
|
|
|
TestLocalConflict(funbind + varbinds[v]);
|
|
|
|
// Different level.
|
|
|
|
TestLocalConflict(funbind + '{' + varbinds[v] + '}');
|
|
|
|
TestLocalConflict('{' + varbinds[v] +'}' + funbind);
|
|
|
|
TestNoConflict(varbinds[v] + '{' + funbind + '}');
|
|
|
|
TestNoConflict('{' + funbind + '}' + varbinds[v]);
|
|
|
|
// For loop.
|
|
|
|
TestNoConflict('for (' + varbinds[v] + '0;) {' + funbind + '}');
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test conflicting catch/var bindings.
|
|
|
|
for (var v = 0; v < varbinds.length; ++v) {
|
2014-11-25 14:48:27 +00:00
|
|
|
TestNoConflict('try {} catch(x) {' + varbinds[v] + '}');
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test conflicting parameter/var bindings.
|
|
|
|
for (var v = 0; v < varbinds.length; ++v) {
|
2014-07-09 11:35:05 +00:00
|
|
|
TestNoConflict('(function (x) {' + varbinds[v] + '})();');
|
2011-09-01 12:31:18 +00:00
|
|
|
}
|
2014-07-09 11:35:05 +00:00
|
|
|
|
2016-07-01 04:26:42 +00:00
|
|
|
// Test conflicting catch/function bindings.
|
|
|
|
TestNoConflict('try {} catch(x) {' + funbind + '}');
|
|
|
|
|
2014-07-09 11:35:05 +00:00
|
|
|
// Test conflicting parameter/function bindings.
|
|
|
|
TestNoConflict('(function (x) {' + funbind + '})();');
|