blob: 96014c848d4263d75d79b127ab63be18a2feed40 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// 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: --stack-size=100 --allow-natives-syntax
6
7function g() {}
8
9var count = 0;
10function f() {
11 try {
12 f();
13 } catch(e) {
14 if (count < 100) {
15 count++;
16 %ExecuteInDebugContext(g);
17 }
18 }
19}
20f();