blob: ce236c398c480ca296ae6d32dc59afbdb16cc1b0 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001// Copyright 2016 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: --ignition-filter=f
6// Flags: --no-turbo
7
8// TODO(yangguo): fix for turbofan
9
10function f(x) {
11 if (x == 0) {
12 return new Error().stack;
13 }
14 return f(x - 1);
15}
16
17var stack_lines = f(2).split("\n");
18
19assertTrue(/at f \(.*?:12:12\)/.test(stack_lines[1]));
20assertTrue(/at f \(.*?:14:10\)/.test(stack_lines[2]));
21assertTrue(/at f \(.*?:14:10\)/.test(stack_lines[3]));