| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 function FunctionReceiver() { | 83 function FunctionReceiver() { |
| 84 return ReturnReceiver.apply(Object, arguments); | 84 return ReturnReceiver.apply(Object, arguments); |
| 85 } | 85 } |
| 86 | 86 |
| 87 assertTrue(Object === FunctionReceiver()); | 87 assertTrue(Object === FunctionReceiver()); |
| 88 | 88 |
| 89 | 89 |
| 90 function ShadowApply() { | 90 function ShadowApply() { |
| 91 function f() { return 42; } | 91 function f() { return 42; } |
| 92 f.apply = function() { return 87; } | 92 f.apply = function() { return 87; }; |
| 93 return f.apply(this, arguments); | 93 return f.apply(this, arguments); |
| 94 } | 94 } |
| 95 | 95 |
| 96 assertEquals(87, ShadowApply()); | 96 assertEquals(87, ShadowApply()); |
| 97 assertEquals(87, ShadowApply(1)); | 97 assertEquals(87, ShadowApply(1)); |
| 98 assertEquals(87, ShadowApply(1, 2)); | 98 assertEquals(87, ShadowApply(1, 2)); |
| 99 | 99 |
| 100 | 100 |
| 101 function CallNonFunction() { | 101 function CallNonFunction() { |
| 102 var object = { apply: Function.prototype.apply }; | 102 var object = { apply: Function.prototype.apply }; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 125 | 125 |
| 126 assertEquals(0, ShadowArgumentsWithConstant().length); | 126 assertEquals(0, ShadowArgumentsWithConstant().length); |
| 127 assertEquals(0, ShadowArgumentsWithConstant(1).length); | 127 assertEquals(0, ShadowArgumentsWithConstant(1).length); |
| 128 assertEquals(0, ShadowArgumentsWithConstant(1, 2).length); | 128 assertEquals(0, ShadowArgumentsWithConstant(1, 2).length); |
| 129 | 129 |
| 130 | 130 |
| 131 // Make sure we can deal with unfolding lots of arguments on the | 131 // Make sure we can deal with unfolding lots of arguments on the |
| 132 // stack even in the presence of the apply optimizations. | 132 // stack even in the presence of the apply optimizations. |
| 133 var array = new Array(2048); | 133 var array = new Array(2048); |
| 134 assertEquals(2048, Global.apply(this, array).length); | 134 assertEquals(2048, Global.apply(this, array).length); |
| OLD | NEW |