Revision: 20913
Author:   wi...@igalia.com
Date:     Wed Apr 23 15:01:30 2014 UTC
Log:      Move bug 3280 regression test to mjsunit/harmony

R=yang...@chromium.org
BUG=

Review URL: https://codereview.chromium.org/248483004
http://code.google.com/p/v8/source/detail?r=20913

Added:
 /branches/bleeding_edge/test/mjsunit/harmony/regress/regress-3280.js
Deleted:
 /branches/bleeding_edge/test/mjsunit/regress/regress-3280.js

=======================================
--- /dev/null
+++ /branches/bleeding_edge/test/mjsunit/harmony/regress/regress-3280.js Wed Apr 23 15:01:30 2014 UTC
@@ -0,0 +1,25 @@
+// 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: --harmony-generators --expose-debug-as debug
+
+var Debug = debug.Debug;
+
+var listener_called;
+
+function listener(event, exec_state, event_data, data) {
+  if (event == Debug.DebugEvent.Break) {
+    listener_called = true;
+    exec_state.frame().allScopes();
+  }
+}
+
+Debug.setListener(listener);
+
+function *generator_local_2(a) {
+  debugger;
+}
+generator_local_2(1).next();
+
+assertTrue(listener_called, "listener not called");
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-3280.js Tue Apr 22 11:34:16 2014 UTC
+++ /dev/null
@@ -1,25 +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: --harmony-generators --expose-debug-as debug
-
-var Debug = debug.Debug;
-
-var listener_called;
-
-function listener(event, exec_state, event_data, data) {
-  if (event == Debug.DebugEvent.Break) {
-    listener_called = true;
-    exec_state.frame().allScopes();
-  }
-}
-
-Debug.setListener(listener);
-
-function *generator_local_2(a) {
-  debugger;
-}
-generator_local_2(1).next();
-
-assertTrue(listener_called, "listener not called");

--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to