Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/es6/regress/regress-411237.js')
-rw-r--r--deps/v8/test/mjsunit/es6/regress/regress-411237.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/deps/v8/test/mjsunit/es6/regress/regress-411237.js b/deps/v8/test/mjsunit/es6/regress/regress-411237.js
deleted file mode 100644
index b2b1a39bf61..00000000000
--- a/deps/v8/test/mjsunit/es6/regress/regress-411237.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --allow-natives-syntax
-
-%PrepareFunctionForOptimization(print);
-try {
- %OptimizeFunctionOnNextCall(print);
-} catch(e) { }
-
-try {
- function* f() {
- }
- %PrepareFunctionForOptimization(f);
- %OptimizeFunctionOnNextCall(f);
-} catch(e) { }