summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/declare-locally.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/declare-locally.js')
-rw-r--r--deps/v8/test/mjsunit/declare-locally.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/deps/v8/test/mjsunit/declare-locally.js b/deps/v8/test/mjsunit/declare-locally.js
index 45d30e0947..f03217e739 100644
--- a/deps/v8/test/mjsunit/declare-locally.js
+++ b/deps/v8/test/mjsunit/declare-locally.js
@@ -27,19 +27,13 @@
// Make sure that we're not overwriting global
// properties defined in the prototype chain too
-// early when shadowing them with var/const
+// early when shadowing them with var
// declarations.
// This exercises the code in runtime.cc in
// DeclareGlobal...Locally().
-// Flags: --legacy-const
-
this.__proto__.foo = 42;
-this.__proto__.bar = 87;
eval("assertEquals(undefined, foo); var foo = 87;");
assertEquals(87, foo);
-
-eval("assertEquals(undefined, bar); const bar = 42;");
-assertEquals(42, bar);