Index: test/mjsunit/ignition/stack-trace-source-position.js |
diff --git a/test/mjsunit/ignition/stack-trace-source-position.js b/test/mjsunit/ignition/stack-trace-source-position.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4471aabbc77160f8e7d09a20f61957baff89cd42 |
--- /dev/null |
+++ b/test/mjsunit/ignition/stack-trace-source-position.js |
@@ -0,0 +1,13 @@ |
+// Copyright 2016 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: --ignition --ignition-filter=f |
+ |
+function f() { |
+ return new Error().stack; |
+} |
+ |
+// TODO(yangguo): this is just a dummy source position calculated for |
+// interpreter bytecode. Update this once something better comes along. |
+assertTrue(f().indexOf("f (test.js:1:1)") >= 0); |