[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
|
|
|
// Flags: --harmony-iterator-close
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
function* g() { yield 42; return 88 };
|
|
|
|
|
|
|
|
|
|
|
|
// Return method is "undefined".
|
|
|
|
{
|
|
|
|
g.prototype.return = null;
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(undefined, (() => {
|
|
|
|
for (var x of g()) { break; }
|
|
|
|
})());
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(undefined, (() => {
|
|
|
|
for (let x of g()) { break; }
|
|
|
|
})());
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(undefined, (() => {
|
|
|
|
for (const x of g()) { break; }
|
|
|
|
})());
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(undefined, (() => {
|
|
|
|
for (x of g()) { break; }
|
|
|
|
})());
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (var x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (let x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (const x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (var x of g()) { x; }'));
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (let x of g()) { x; }'));
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (const x of g()) { x; }'));
|
|
|
|
|
|
|
|
assertEquals(42, eval('for (x of g()) { x; }'));
|
|
|
|
|
|
|
|
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
var [x] = g(); return x;
|
|
|
|
})());
|
|
|
|
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
let [x] = g(); return x;
|
|
|
|
})());
|
|
|
|
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
const [x] = g(); return x;
|
|
|
|
})());
|
|
|
|
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
[x] = g(); return x;
|
|
|
|
})());
|
|
|
|
|
|
|
|
assertEquals(42,
|
|
|
|
(([x]) => x)(g())
|
|
|
|
);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return method is not callable.
|
|
|
|
{
|
|
|
|
g.prototype.return = 666;
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
for (var x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (let x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (const x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
for (var x of g()) { throw 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (let x of g()) { throw 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (const x of g()) { throw 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (x of g()) { throw 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
for (var x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (let x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (const x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (var x of g()) { x; }'));
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (let x of g()) { x; }'));
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (const x of g()) { x; }'));
|
|
|
|
|
|
|
|
assertEquals(42, eval('for (x of g()) { x; }'));
|
|
|
|
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
var [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
let [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
const [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
[x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
(([x]) => x)(g());
|
|
|
|
}, TypeError);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return method does not return an object.
|
|
|
|
{
|
|
|
|
g.prototype.return = () => 666;
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
for (var x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (let x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (const x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (x of g()) { break; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
2016-02-24 18:21:32 +00:00
|
|
|
// Throw from the body of a for loop 'wins' vs throw
|
|
|
|
// originating from a bad 'return' value.
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { throw 666; }
|
|
|
|
}, 666);
|
|
|
|
|
2016-02-24 18:21:32 +00:00
|
|
|
assertThrowsEquals(() => {
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
for (let x of g()) { throw 666; }
|
2016-02-24 18:21:32 +00:00
|
|
|
}, 666);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { throw 666; }
|
|
|
|
}, 666);
|
|
|
|
|
2016-02-24 18:21:32 +00:00
|
|
|
assertThrowsEquals(() => {
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
for (x of g()) { throw 666; }
|
2016-02-24 18:21:32 +00:00
|
|
|
}, 666);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
for (var x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (let x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (const x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
for (x of g()) { return 666; }
|
|
|
|
}, TypeError);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
assertEquals(42, eval('for (var x of g()) { x; }'));
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(42, eval('for (let x of g()) { x; }'));
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, eval('for (const x of g()) { x; }'));
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals(42, eval('for (x of g()) { x; }'));
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
var [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
let [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
const [x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
[x] = g(); return x;
|
|
|
|
}, TypeError);
|
|
|
|
|
|
|
|
assertThrows(() => {
|
|
|
|
(([x]) => x)(g());
|
|
|
|
}, TypeError);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return method returns an object.
|
|
|
|
{
|
|
|
|
let log = [];
|
|
|
|
g.prototype.return = (...args) => { log.push(args); return {} };
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
log = [];
|
|
|
|
for (var x of g()) { break; }
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
for (let x of g()) { break; }
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
for (const x of g()) { break; }
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
for (x of g()) { break; }
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (var x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (let x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (const x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
for (x of g()) { return 42; }
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (var x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (let x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (const x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
2016-02-24 18:52:17 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
2016-02-24 18:52:17 +00:00
|
|
|
// Even if doing the assignment throws, still call return
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
2016-02-24 18:52:17 +00:00
|
|
|
x = { set attr(_) { throw 1234; } };
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x.attr of g()) { throw 456; }
|
|
|
|
}, 1234);
|
|
|
|
assertEquals([[]], log);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
var [x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
let [x] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
const [x] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
[x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals(42,
|
|
|
|
(([x]) => x)(g())
|
|
|
|
);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
var [x,] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
let [x,] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
const [x,] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
[x,] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals(42,
|
|
|
|
(([x,]) => x)(g())
|
|
|
|
);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
var [x,,] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
2016-03-10 09:33:29 +00:00
|
|
|
assertEquals(42, (() => {
|
|
|
|
let [x,,] = g(); return x;
|
|
|
|
})());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
assertEquals([], log);
|
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
const [x,,] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = [];
|
|
|
|
assertEquals(42, (() => {
|
|
|
|
[x,,] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
log = []
|
|
|
|
assertEquals(42,
|
|
|
|
(([x,,]) => x)(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
|
2016-03-10 09:33:29 +00:00
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
var [x, y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
let [x, y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
const [x, y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
[x, y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([42, undefined],
|
|
|
|
(([x, y]) => [x, y])(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
var [...x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
let [...x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
const [...x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
[...x] = g(); return x;
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([42],
|
|
|
|
(([...x]) => x)(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, []], (() => {
|
|
|
|
var [x, ...y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, []], (() => {
|
|
|
|
let [x, ...y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, []], (() => {
|
|
|
|
const [x, ...y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, []], (() => {
|
|
|
|
[x, ...y] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([42, []],
|
|
|
|
(([x, ...y]) => [x, y])(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
var [] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
let [] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
const [] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
[] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([],
|
|
|
|
(([]) => [])(g())
|
|
|
|
);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
var [...[]] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
let [...[]] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
const [...[]] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([], (() => {
|
|
|
|
[...[]] = g(); return [];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([],
|
|
|
|
(([...[]]) => [])(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
var [...[x]] = g(); return [x];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
let [...[x]] = g(); return [x];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
const [...[x]] = g(); return [x];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42], (() => {
|
|
|
|
[...[x]] = g(); return [x];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([42],
|
|
|
|
(([...[x]]) => [x])(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
var [...[x, y]] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
let [...[x, y]] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
const [...[x, y]] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals([42, undefined], (() => {
|
|
|
|
[...[x, y]] = g(); return [x, y];
|
|
|
|
})());
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertEquals([42, undefined],
|
|
|
|
(([...[x, y]]) => [x, y])(g())
|
|
|
|
);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
let x = { set foo(_) { throw 666; } };
|
|
|
|
[x.foo] = g();
|
|
|
|
}, 666);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
var [[]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
let [[]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
const [[]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
[[]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
(([[]]) => 0)(g());
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
var [...[[]]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
let [...[[]]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
const [...[[]]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
[...[[]]] = g();
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = []
|
|
|
|
assertThrows(() => {
|
|
|
|
(([...[[]]]) => 0)(g());
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
let backup = Array.prototype[Symbol.iterator];
|
|
|
|
Array.prototype[Symbol.iterator] = () => g();
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
var [x, ...[y]] = [1, 2, 3]
|
|
|
|
});
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
let [x, ...[y]] = [1, 2, 3];
|
|
|
|
});
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
const [x, ...[y]] = [1, 2, 3];
|
|
|
|
});
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
(([x, ...[y]]) => {})([1, 2, 3]);
|
|
|
|
});
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrows(() => {
|
|
|
|
var [x, ...[[]]] = [1, 2, 3];
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrows(() => {
|
|
|
|
let [x, ...[[]]] = [1, 2, 3];
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrows(() => {
|
|
|
|
const [x, ...[[]]] = [1, 2, 3];
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrows(() => {
|
|
|
|
(([x, ...[[]]]) => {})([1, 2, 3]);
|
|
|
|
}, TypeError);
|
|
|
|
assertEquals(log, [[]]);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
var [x, ...[...y]] = [1, 2, 3];
|
|
|
|
});
|
|
|
|
assertEquals(log, []);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
let [x, ...[...y]] = [1, 2, 3];
|
|
|
|
});
|
|
|
|
assertEquals(log, []);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
const [x, ...[...y]] = [1, 2, 3];
|
|
|
|
});
|
|
|
|
assertEquals(log, []);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
(([x, ...[...y]]) => {})([1, 2, 3]);
|
|
|
|
});
|
|
|
|
assertEquals(log, []);
|
|
|
|
|
|
|
|
|
|
|
|
Array.prototype[Symbol.iterator] = backup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return method throws.
|
|
|
|
{
|
|
|
|
let log = [];
|
|
|
|
g.prototype.return = (...args) => { log.push(args); throw 23 };
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { break; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) { break; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { break; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) { break; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) { throw 42; }
|
|
|
|
}, 42);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) { return 42; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) { return 42; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) { return 42; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) { return 42; }
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (var x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (let x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (const x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertEquals(42, eval('for (x of g()) { x; }'));
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
var [x] = g(); return x;
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
let [x] = g(); return x;
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
const [x] = g(); return x;
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
[x] = g(); return x;
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
(([x]) => x)(g())
|
|
|
|
}, 23);
|
|
|
|
assertEquals([[]], log);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Next method throws.
|
|
|
|
{
|
|
|
|
g.prototype.next = () => { throw 666; };
|
|
|
|
g.prototype.return = () => { assertUnreachable() };
|
|
|
|
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (var x of g()) {}
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g()) {}
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (const x of g()) {}
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (x of g()) {}
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
var [x] = g();
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
let [x] = g();
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
const [x] = g();
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
[x] = g();
|
|
|
|
}, 666);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
(([x]) => x)(g());
|
[es6] Implement for-of iterator finalization
Implements iterator finalisation by desugaring for-of loops with an additional try-finally wrapper. See comment in parser.cc for details.
Also improved some AST printing facilities while there.
@Ross, I had to disable the bytecode generation test for for-of, because it got completely out of hand after this change (the new bytecode has 150+ lines). See the TODO that I assigned to you.
Patch set 1 is WIP patch by Georg (http://crrev.com/1695583003), patch set 2 relative changes.
@Georg, FYI, I changed the following:
- Moved try-finally out of the loop body, for performance, and in order to be able to handle `continue` correctly.
- Fixed scope management in ParseForStatement, which was the cause for the variable allocation failure.
- Fixed pre-existing zone initialisation bug in rewriter, which caused the crashes.
- Enabled all tests, adjusted a few others, added a couple more.
BUG=v8:2214
LOG=Y
Review URL: https://codereview.chromium.org/1695393003
Cr-Commit-Position: refs/heads/master@{#34111}
2016-02-18 10:49:07 +00:00
|
|
|
}, 666);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Nested loops.
|
|
|
|
{
|
|
|
|
function* g1() { yield 1; yield 2; throw 3; }
|
|
|
|
function* g2() { yield -1; yield -2; throw -3; }
|
|
|
|
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break;
|
|
|
|
}
|
|
|
|
if (x == 2) break;
|
|
|
|
}
|
|
|
|
}, -3);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, -3);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 3);
|
|
|
|
|
|
|
|
assertDoesNotThrow(() => {
|
|
|
|
l: for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break l;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
throw 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 4);
|
|
|
|
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) throw 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 4);
|
|
|
|
|
|
|
|
let log = [];
|
|
|
|
g1.prototype.return = () => { log.push(1); throw 5 };
|
|
|
|
g2.prototype.return = () => { log.push(2); throw -5 };
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break;
|
|
|
|
}
|
|
|
|
if (x == 2) break;
|
|
|
|
}
|
|
|
|
}, -5);
|
|
|
|
assertEquals([2, 1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, -3);
|
|
|
|
assertEquals([1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, -5);
|
|
|
|
assertEquals([2, 1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
l: for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) break l;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, -5);
|
|
|
|
assertEquals([2, 1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
throw 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 4);
|
|
|
|
assertEquals([2, 1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
for (let y of g2()) {
|
|
|
|
if (y == -2) throw 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 4);
|
|
|
|
assertEquals([2, 1], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
try {
|
|
|
|
for (let y of g2()) {
|
|
|
|
}
|
|
|
|
} catch (_) {}
|
|
|
|
}
|
|
|
|
}, 3);
|
|
|
|
assertEquals([], log);
|
|
|
|
|
|
|
|
log = [];
|
|
|
|
assertThrowsEquals(() => {
|
|
|
|
for (let x of g1()) {
|
|
|
|
try {
|
|
|
|
for (let y of g2()) {
|
|
|
|
}
|
|
|
|
} catch (_) {}
|
|
|
|
if (x == 2) break;
|
|
|
|
}
|
|
|
|
}, 5);
|
|
|
|
assertEquals([1], log);
|
|
|
|
}
|