OLD | NEW |
---|---|
(Empty) | |
1 // 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: --allow-natives-syntax --stress-compaction --verify-heap | |
6 // Flags: --stack-size=100 | |
7 | |
8 // Load the debug context to fill up code space. | |
9 %GetDebugContext(); | |
10 %GetDebugContext(); | |
11 | |
12 // Recurse and run regexp code. | |
13 assertThrows(function f() { f(/./.test("a")); }, RangeError); | |
OLD | NEW |