| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 12 matching lines...) Expand all Loading... |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 function foo(x) { | 28 function foo(x) { |
| 29 var a = arguments; | 29 var a = arguments; |
| 30 function bar(i) { | 30 function bar(i) { |
| 31 assertEquals(i, ++a[0]); | 31 assertEquals(i, ++a[0]); |
| 32 assertEquals(i, x); | 32 assertEquals(i, x); |
| 33 }; | 33 } |
| 34 bar(1); | 34 bar(1); |
| 35 bar(2); | 35 bar(2); |
| 36 bar(3); | 36 bar(3); |
| 37 return bar; | 37 return bar; |
| 38 } | 38 } |
| 39 var baz = foo(0); | 39 var baz = foo(0); |
| 40 baz(4); | 40 baz(4); |
| 41 baz(5); | 41 baz(5); |
| 42 baz(6); | 42 baz(6); |
| 43 | 43 |
| 44 // Test writing a non-smi. | 44 // Test writing a non-smi. |
| 45 function foo2(x) { | 45 function foo2(x) { |
| 46 var a = arguments; | 46 var a = arguments; |
| 47 function bar2(i) { | 47 function bar2(i) { |
| 48 assertEquals(i, ++a[0]); | 48 assertEquals(i, ++a[0]); |
| 49 assertEquals(i, x); | 49 assertEquals(i, x); |
| 50 }; | 50 } |
| 51 bar2(1.5); | 51 bar2(1.5); |
| 52 bar2(2.5); | 52 bar2(2.5); |
| 53 bar2(3.5); | 53 bar2(3.5); |
| 54 return bar2; | 54 return bar2; |
| 55 } | 55 } |
| 56 var baz2 = foo2(0.5); | 56 var baz2 = foo2(0.5); |
| 57 baz2(4.5); | 57 baz2(4.5); |
| 58 baz2(5.5); | 58 baz2(5.5); |
| 59 baz2(6.5); | 59 baz2(6.5); |
| OLD | NEW |