Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Side by Side Diff: test/mjsunit/arguments-escape.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/arguments-enum.js ('k') | test/mjsunit/arguments-read-and-assignment.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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);
OLDNEW
« no previous file with comments | « test/mjsunit/arguments-enum.js ('k') | test/mjsunit/arguments-read-and-assignment.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698