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
(83)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/mjsunit/regress/regress-v8-5958.js
Issue
2684033012
:
[es2015] Remove the @@hasInstance protector cell. (Closed)
Patch Set: REBASE
Created 3 years, 10 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/builtins.h
src/code-stub-assembler.h
src/code-stub-assembler.cc
src/full-codegen/arm/full-codegen-arm.cc
src/full-codegen/arm64/full-codegen-arm64.cc
src/full-codegen/ia32/full-codegen-ia32.cc
src/full-codegen/mips/full-codegen-mips.cc
src/full-codegen/mips64/full-codegen-mips64.cc
src/full-codegen/ppc/full-codegen-ppc.cc
src/full-codegen/s390/full-codegen-s390.cc
src/full-codegen/x64/full-codegen-x64.cc
src/full-codegen/x87/full-codegen-x87.cc
src/heap/heap.h
src/heap/heap.cc
src/isolate.h
src/isolate.cc
src/isolate-inl.h
src/lookup.cc
src/runtime/runtime.h
src/runtime/runtime-internal.cc
test/mjsunit/regress/regress-v8-5958.js
View unified diff
|
Download patch
« no previous file with comments
|
« src/runtime/runtime-internal.cc
('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: --allow-natives-syntax
6
7
class A {}
8
class B {}
9
10
A.__proto__ = new Proxy(A.__proto__, {
11
get: function (target, property, receiver) {
12
if (property === Symbol.hasInstance) throw new B;
13
}
14
});
15
16
assertThrows(() => (new A) instanceof A, B);
OLD
NEW
« no previous file with comments
|
« src/runtime/runtime-internal.cc
('k') |
no next file »
|
no next file with comments »
Issue 2684033012: [es2015] Remove the @@hasInstance protector cell. (Closed)
Created 3 years, 10 months ago by Benedikt Meurer
Modified 3 years, 10 months ago
Reviewers: Yang
Base URL:
Comments: 2
This is Rietveld
408576698