Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 var g = new Function('1 + reference_error //@ sourceURL=evaltest'); | |
|
aandrey
2014/11/10 20:38:18
could you also test that:
eval('(function () {\n
Yang
2014/11/11 09:51:55
Done.
| |
| 6 var stack; | |
| 5 try { | 7 try { |
| 6 new Uint32Array(new ArrayBuffer(1), 2, 3); | 8 g(); |
| 7 } catch (e) { | 9 } catch (e) { |
| 8 assertEquals("start offset of Uint32Array should be a multiple of 4", | 10 stack = e.stack; |
| 9 e.message); | |
| 10 } | 11 } |
| 12 | |
| 13 assertTrue(stack.indexOf("at eval (evaltest:1:5)") > 0); | |
| OLD | NEW |