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

Side by Side Diff: test/mjsunit/regress/regress-inline-arrow-as-construct.js

Issue 1467473002: Install ConstructNonConstructable as construct stub for non-constructables. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years 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 | « test/cctest/test-api.cc ('k') | test/unittests/compiler/bytecode-graph-builder-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
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --allow-natives-syntax --strong-mode 5 // Flags: --allow-natives-syntax
6 6
7 // This tests that inlining a constructor call to a function which cannot be 7 // This tests that inlining a constructor call to a function which cannot be
8 // used as a constructor (e.g. strong mode function) still throws correctly. 8 // used as a constructor (e.g. arrow function) still throws correctly.
9 9
10 function g() { 10 var g = () => {}
11 "use strong";
12 }
13 11
14 function f() { 12 function f() {
15 return new g(); 13 return new g();
16 } 14 }
17 15
18 assertThrows(f); 16 assertThrows(f);
19 assertThrows(f); 17 assertThrows(f);
20 %OptimizeFunctionOnNextCall(f); 18 %OptimizeFunctionOnNextCall(f);
21 assertThrows(f); 19 assertThrows(f);
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | test/unittests/compiler/bytecode-graph-builder-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698