OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 try { | |
6 var src = "return " + Array(12000).join("src,") + "src"; | |
7 var fun = Function(src); | |
8 assertEquals(src, fun()); | |
9 } catch (e) { | |
10 // Some architectures throw a RangeError, that is fine. | |
11 assertInstanceof(e, RangeError); | |
12 } | |
OLD | NEW |