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

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

Issue 1773653002: [strong] Remove all remainders of strong mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --allow-natives-syntax --strong-mode
6
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.
9
10 function g() {
11 "use strong";
12 }
13
14 function f() {
15 return new g();
16 }
17
18 assertThrows(f);
19 assertThrows(f);
20 %OptimizeFunctionOnNextCall(f);
21 assertThrows(f);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698