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

Side by Side Diff: test/mjsunit/regress/regress-84234.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/regress/regress-815.js ('k') | test/mjsunit/regress/regress-85177.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 13 matching lines...) Expand all
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 // Flags: --expose-gc --noopt 28 // Flags: --expose-gc --noopt
29 29
30 var gTestcases = new Array(); 30 var gTestcases = new Array();
31 31
32 function TestCase(n, d, e, a) { 32 function TestCase(n, d, e, a) {
33 gTestcases[gTc++] = this; 33 gTestcases[gTc++] = this;
34 for ( gTc=0; gTc < gTestcases.length; gTc++ ); 34 for ( gTc=0; gTc < gTestcases.length; gTc++ ) { }
35 } 35 }
36 36
37 for ( var i = 0x0530; i <= 0x058F; i++ ) { 37 for ( var i = 0x0530; i <= 0x058F; i++ ) {
38 new TestCase("15.5.4.11-6", 38 new TestCase("15.5.4.11-6",
39 eval("var s = new String(String.fromCharCode(i)); s.toLowerCase() .charCodeAt(0)")); 39 eval("var s = new String(String.fromCharCode(i)); s.toLowerCase() .charCodeAt(0)"));
40 } 40 }
41 var gTc= 0; 41 var gTc= 0;
42 42
43 43
44 for (var j = 0; j < 10; j++) { 44 for (var j = 0; j < 10; j++) {
45 test(); 45 test();
46 function test() { 46 function test() {
47 for ( 0; gTc < gTestcases.length; gTc++ ) { 47 for ( 0; gTc < gTestcases.length; gTc++ ) {
48 var MYOBJECT = new MyObject(); 48 var MYOBJECT = new MyObject();
49 } 49 }
50 gc(); 50 gc();
51 } 51 }
52 function MyObject( n ) { 52 function MyObject( n ) {
53 this.__proto__ = Number.prototype; 53 this.__proto__ = Number.prototype;
54 } 54 }
55 } 55 }
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-815.js ('k') | test/mjsunit/regress/regress-85177.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698