Drop obsolete ES6 TODOs about activating extended mode.

R=ulan@chromium.org

Review URL: https://codereview.chromium.org/338363002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21877 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c41c4358
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
// Test for conflicting variable bindings. // Test for conflicting variable bindings.
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
function CheckException(e) { function CheckException(e) {
......
...@@ -30,9 +30,8 @@ ...@@ -30,9 +30,8 @@
// Test that we throw early syntax errors in harmony mode // Test that we throw early syntax errors in harmony mode
// when using an immutable binding in an assigment or with // when using an immutable binding in an assigment or with
// prefix/postfix decrement/increment operators. // prefix/postfix decrement/increment operators.
// TODO(ES6): properly activate extended mode
"use strict";
"use strict";
// Function local const. // Function local const.
function constDecl0(use) { function constDecl0(use) {
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
// Flags: --harmony-scoping // Flags: --harmony-scoping
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
function props(x) { function props(x) {
...@@ -93,7 +92,6 @@ assertEquals('ab', result); ...@@ -93,7 +92,6 @@ assertEquals('ab', result);
// Check that there is exactly one variable without initializer // Check that there is exactly one variable without initializer
// in a for-in statement with let variables. // in a for-in statement with let variables.
// TODO(ES6): properly activate extended mode
assertThrows("function foo() { 'use strict'; for (let in {}) { } }", SyntaxError); assertThrows("function foo() { 'use strict'; for (let in {}) { } }", SyntaxError);
assertThrows("function foo() { 'use strict'; for (let x = 3 in {}) { } }", SyntaxError); assertThrows("function foo() { 'use strict'; for (let x = 3 in {}) { } }", SyntaxError);
assertThrows("function foo() { 'use strict'; for (let x, y in {}) { } }", SyntaxError); assertThrows("function foo() { 'use strict'; for (let x, y in {}) { } }", SyntaxError);
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
// Flags: --harmony-scoping // Flags: --harmony-scoping
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
// We want to test the context chain shape. In each of the tests cases // We want to test the context chain shape. In each of the tests cases
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
// Flags: --harmony-scoping --allow-natives-syntax // Flags: --harmony-scoping --allow-natives-syntax
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
// Check that the following functions are optimizable. // Check that the following functions are optimizable.
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
// Flags: --harmony-scoping // Flags: --harmony-scoping
// Test let declarations in various settings. // Test let declarations in various settings.
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
// Global // Global
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
// Flags: --harmony-scoping // Flags: --harmony-scoping
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
// Test temporal dead zone semantics of let bound variables in // Test temporal dead zone semantics of let bound variables in
......
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
// The functions used for testing backtraces. They are at the top to make the // The functions used for testing backtraces. They are at the top to make the
// testing of source line/column easier. // testing of source line/column easier.
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
// Get the Debug object exposed from the debug context global object. // Get the Debug object exposed from the debug context global object.
......
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
// Test debug evaluation for functions without local context, but with // Test debug evaluation for functions without local context, but with
// nested catch contexts. // nested catch contexts.
// TODO(ES6): properly activate extended mode
"use strict"; "use strict";
var x; var x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment