2014-04-11 13:16:36 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-06-29 17:08:00 +00:00
|
|
|
// Flags: --stack-size=150
|
2014-04-11 13:16:36 +00:00
|
|
|
|
|
|
|
function f(a) {
|
|
|
|
f(a + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Error.__defineGetter__('stackTraceLimit', function() { });
|
|
|
|
try {
|
|
|
|
f(0);
|
|
|
|
} catch (e) { }
|