Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: test/mjsunit/regress/regress-5638.js

Issue 2671203003: [turbofan] Mark {JSCreate} as potentially throwing. (Closed)
Patch Set: 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.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/js-operator.cc ('k') | test/unittests/compiler/js-create-lowering-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 MyErrorA {}
8
9 class MyErrorB {}
10
11 class A {}
12
13 class B extends A {
14 constructor() {
15 try {
16 super();
17 } catch (e) {
18 throw new MyErrorB();
19 }
20 }
21 }
22
23 var thrower = new Proxy(A, {
24 get(target, property, receiver) {
25 if (property === 'prototype') throw new MyErrorA();
26 }
27 });
28
29 assertThrows(() => Reflect.construct(B, [], thrower), MyErrorB);
30 assertThrows(() => Reflect.construct(B, [], thrower), MyErrorB);
31 %OptimizeFunctionOnNextCall(B);
32 assertThrows(() => Reflect.construct(B, [], thrower), MyErrorB);
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | test/unittests/compiler/js-create-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698