Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(205)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/mjsunit/regress/regress-681171-3.js
Issue
2639533002
:
[generators] Always call function with closure context when resuming. (Closed)
Patch Set: Ports.
Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
src/builtins/arm/builtins-arm.cc
src/builtins/arm64/builtins-arm64.cc
src/builtins/ia32/builtins-ia32.cc
src/builtins/mips/builtins-mips.cc
src/builtins/mips64/builtins-mips64.cc
src/builtins/ppc/builtins-ppc.cc
src/builtins/s390/builtins-s390.cc
src/builtins/x64/builtins-x64.cc
src/builtins/x87/builtins-x87.cc
src/compiler/js-intrinsic-lowering.h
src/compiler/js-intrinsic-lowering.cc
src/interpreter/bytecode-generator.cc
src/runtime/runtime.h
src/runtime/runtime-generator.cc
test/cctest/interpreter/bytecode_expectations/Generators.golden
test/cctest/interpreter/bytecode_expectations/Modules.golden
test/mjsunit/regress/regress-681171-1.js
test/mjsunit/regress/regress-681171-2.js
test/mjsunit/regress/regress-681171-3.js
View unified diff
|
Download patch
« no previous file with comments
|
« test/mjsunit/regress/regress-681171-2.js
('k') |
no next file »
|
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2017 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
// Flags: --always-opt --function-context-specialization --verify-heap
6
7
(function __f_5() {
8
var __v_0 = { *['a']() { yield 2; } };
9
var __v_3 = __v_0.a();
10
__v_3.next();
11
})();
OLD
NEW
« no previous file with comments
|
« test/mjsunit/regress/regress-681171-2.js
('k') |
no next file »
|
no next file with comments »
Issue 2639533002: [generators] Always call function with closure context when resuming. (Closed)
Created 3 years, 11 months ago by neis
Modified 3 years, 11 months ago
Reviewers: Jarin, Michael Starzinger
Base URL:
Comments: 1
This is Rietveld
408576698