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

Side by Side Diff: test/mjsunit/apply.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 | « src/v8natives.js ('k') | test/mjsunit/argument-named-arguments.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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 } 135 }
136 break; 136 break;
137 } 137 }
138 } 138 }
139 139
140 var primes = new Array(0); 140 var primes = new Array(0);
141 141
142 function isPrime(possible_prime) { 142 function isPrime(possible_prime) {
143 for (var d = 0; d < primes.length; d++) { 143 for (var d = 0; d < primes.length; d++) {
144 var p = primes[d]; 144 var p = primes[d];
145 if (possible_prime % p == 0) 145 if (possible_prime % p == 0) {
146 return false; 146 return false;
147 if (p * p > possible_prime) 147 }
148 if (p * p > possible_prime) {
148 return true; 149 return true;
150 }
149 } 151 }
150 return true; 152 return true;
151 } 153 }
152 154
153 for (var i = 2; i < 10000; i++) { 155 for (var i = 2; i < 10000; i++) {
154 if (isPrime(i)) { 156 if (isPrime(i)) {
155 primes.push(i); 157 primes.push(i);
156 } 158 }
157 } 159 }
158 160
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 "moreseper-prime"); 192 "moreseper-prime");
191 193
192 delete(Array.prototype["1"]); 194 delete(Array.prototype["1"]);
193 195
194 // Check correct handling of non-array argument lists. 196 // Check correct handling of non-array argument lists.
195 assertSame(this, f0.apply(this, {}), "non-array-1"); 197 assertSame(this, f0.apply(this, {}), "non-array-1");
196 assertSame(this, f0.apply(this, { length:1 }), "non-array-2"); 198 assertSame(this, f0.apply(this, { length:1 }), "non-array-2");
197 assertEquals(void 0, f1.apply(this, { length:1 }), "non-array-3"); 199 assertEquals(void 0, f1.apply(this, { length:1 }), "non-array-3");
198 assertEquals(void 0, f1.apply(this, { 0:"foo" }), "non-array-4"); 200 assertEquals(void 0, f1.apply(this, { 0:"foo" }), "non-array-4");
199 assertEquals("foo", f1.apply(this, { length:1, 0:"foo" }), "non-array-5"); 201 assertEquals("foo", f1.apply(this, { length:1, 0:"foo" }), "non-array-5");
OLDNEW
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/argument-named-arguments.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698