| 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 // Return the raw CallSites array. | 5 // Return the raw CallSites array. |
| 6 Error.prepareStackTrace = function (a,b) { return b; }; | 6 Error.prepareStackTrace = function (a,b) { return b; }; |
| 7 | 7 |
| 8 var threw = false; | 8 var threw = false; |
| 9 try { | 9 try { |
| 10 new Function({toString:0,valueOf:0}); | 10 new Function({toString:0,valueOf:0}); |
| 11 } catch (e) { | 11 } catch (e) { |
| 12 threw = true; | 12 threw = true; |
| 13 // Ensure that the receiver during "new Function" is the undefined value. | 13 // Ensure that the receiver during "new Function" is the global proxy. |
| 14 assertEquals(undefined, e.stack[0].getThis()); | 14 assertEquals(this, e.stack[0].getThis()); |
| 15 } | 15 } |
| 16 | 16 |
| 17 assertTrue(threw); | 17 assertTrue(threw); |
| OLD | NEW |