| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 assertEquals(2, ShadowArguments().length); | 67 assertEquals(2, ShadowArguments().length); |
| 68 assertEquals(3, ShadowArguments()[0]); | 68 assertEquals(3, ShadowArguments()[0]); |
| 69 assertEquals(4, ShadowArguments()[1]); | 69 assertEquals(4, ShadowArguments()[1]); |
| 70 | 70 |
| 71 | 71 |
| 72 function NonObjectReceiver(receiver) { | 72 function NonObjectReceiver(receiver) { |
| 73 return ReturnReceiver.apply(receiver, arguments); | 73 return ReturnReceiver.apply(receiver, arguments); |
| 74 } | 74 } |
| 75 | 75 |
| 76 assertEquals(42, NonObjectReceiver(42)); | 76 assertEquals(42, NonObjectReceiver(42)); |
| 77 assertEquals("object", typeof NonObjectReceiver(42)); | 77 assertEquals("number", typeof NonObjectReceiver(42)); |
| 78 assertTrue(NonObjectReceiver(42) instanceof Number); | 78 assertTrue(null === NonObjectReceiver(null)); |
| 79 assertTrue(this === NonObjectReceiver(null)); | 79 assertTrue(undefined === NonObjectReceiver(void 0)); |
| 80 assertTrue(this === NonObjectReceiver(void 0)); | |
| 81 | 80 |
| 82 | 81 |
| 83 function FunctionReceiver() { | 82 function FunctionReceiver() { |
| 84 return ReturnReceiver.apply(Object, arguments); | 83 return ReturnReceiver.apply(Object, arguments); |
| 85 } | 84 } |
| 86 | 85 |
| 87 assertTrue(Object === FunctionReceiver()); | 86 assertTrue(Object === FunctionReceiver()); |
| 88 | 87 |
| 89 | 88 |
| 90 function ShadowApply() { | 89 function ShadowApply() { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 124 |
| 126 assertEquals(0, ShadowArgumentsWithConstant().length); | 125 assertEquals(0, ShadowArgumentsWithConstant().length); |
| 127 assertEquals(0, ShadowArgumentsWithConstant(1).length); | 126 assertEquals(0, ShadowArgumentsWithConstant(1).length); |
| 128 assertEquals(0, ShadowArgumentsWithConstant(1, 2).length); | 127 assertEquals(0, ShadowArgumentsWithConstant(1, 2).length); |
| 129 | 128 |
| 130 | 129 |
| 131 // Make sure we can deal with unfolding lots of arguments on the | 130 // Make sure we can deal with unfolding lots of arguments on the |
| 132 // stack even in the presence of the apply optimizations. | 131 // stack even in the presence of the apply optimizations. |
| 133 var array = new Array(2048); | 132 var array = new Array(2048); |
| 134 assertEquals(2048, Global.apply(this, array).length); | 133 assertEquals(2048, Global.apply(this, array).length); |
| OLD | NEW |