OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 var x = "FAIL"; | 62 var x = "FAIL"; |
63 eval("function Outer() { eval('function Inner() { eval(x); }'); Inner(); }; Ou
ter();"); | 63 eval("function Outer() { eval('function Inner() { eval(x); }'); Inner(); }; Ou
ter();"); |
64 } | 64 } |
65 | 65 |
66 function testEvalWithSourceURL() { | 66 function testEvalWithSourceURL() { |
67 eval("function Doo() { FAIL; }; Doo();\n//# sourceURL=res://name"); | 67 eval("function Doo() { FAIL; }; Doo();\n//# sourceURL=res://name"); |
68 } | 68 } |
69 | 69 |
70 function testNestedEvalWithSourceURL() { | 70 function testNestedEvalWithSourceURL() { |
71 var x = "FAIL"; | 71 var x = "FAIL"; |
72 var innerEval = 'function Inner() { eval(x); }\n//@ sourceURL=res://inner-eval
'; | 72 var innerEval = 'function Inner() { eval(x); }\n//# sourceURL=res://inner-eval
'; |
73 eval("function Outer() { eval(innerEval); Inner(); }; Outer();\n//# sourceURL=
res://outer-eval"); | 73 eval("function Outer() { eval(innerEval); Inner(); }; Outer();\n//# sourceURL=
res://outer-eval"); |
74 } | 74 } |
75 | 75 |
76 function testValue() { | 76 function testValue() { |
77 Number.prototype.causeError = function () { FAIL; }; | 77 Number.prototype.causeError = function () { FAIL; }; |
78 (1).causeError(); | 78 (1).causeError(); |
79 } | 79 } |
80 | 80 |
81 function testConstructor() { | 81 function testConstructor() { |
82 function Plonk() { FAIL; } | 82 function Plonk() { FAIL; } |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 | 378 |
379 my_error = {}; | 379 my_error = {}; |
380 Object.preventExtensions(my_error); | 380 Object.preventExtensions(my_error); |
381 assertThrows(function() { Error.captureStackTrace(my_error); }); | 381 assertThrows(function() { Error.captureStackTrace(my_error); }); |
382 | 382 |
383 var fake_error = {}; | 383 var fake_error = {}; |
384 my_error = new Error(); | 384 my_error = new Error(); |
385 var stolen_getter = Object.getOwnPropertyDescriptor(my_error, 'stack').get; | 385 var stolen_getter = Object.getOwnPropertyDescriptor(my_error, 'stack').get; |
386 Object.defineProperty(fake_error, 'stack', { get: stolen_getter }); | 386 Object.defineProperty(fake_error, 'stack', { get: stolen_getter }); |
387 assertEquals(undefined, fake_error.stack); | 387 assertEquals(undefined, fake_error.stack); |
OLD | NEW |