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

Side by Side Diff: test/mjsunit/regress/regress-2470.js

Issue 2638513002: Enable --harmony-trailing-commas (Closed)
Patch Set: put the harmony flag back into the harmony test Created 3 years, 10 months 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
« no previous file with comments | « test/mjsunit/extra-commas.js ('k') | test/test262/test262.status » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 16 matching lines...) Expand all
27 27
28 // Test whether the opening parenthesis can be eaten up by a comment. 28 // Test whether the opening parenthesis can be eaten up by a comment.
29 assertThrows('Function("/*", "*/){");', SyntaxError); 29 assertThrows('Function("/*", "*/){");', SyntaxError);
30 30
31 // Test whether the function literal can be closed prematurely. 31 // Test whether the function literal can be closed prematurely.
32 assertThrows('Function("});(function(){");', SyntaxError); 32 assertThrows('Function("});(function(){");', SyntaxError);
33 33
34 // Test whether block comments are handled correctly. 34 // Test whether block comments are handled correctly.
35 assertDoesNotThrow('Function("/*", "*/", "/**/");'); 35 assertDoesNotThrow('Function("/*", "*/", "/**/");');
36 assertDoesNotThrow('Function("/*", "a", "*/", "/**/");'); 36 assertDoesNotThrow('Function("/*", "a", "*/", "/**/");');
37 assertThrows('Function("a", "/*", "*/", "/**/");', SyntaxError); 37 assertDoesNotThrow('Function("a", "/*", "*/", "/**/");');
38 assertThrows('Function("a", "/*", "*/", "b", "/*", "*/", "/**/");', SyntaxError) ;
38 39
39 // Test whether line comments are handled correctly. 40 // Test whether line comments are handled correctly.
40 assertDoesNotThrow('Function("//", "//")'); 41 assertDoesNotThrow('Function("//", "//")');
41 assertDoesNotThrow('Function("//", "//", "//")'); 42 assertDoesNotThrow('Function("//", "//", "//")');
42 assertThrows('Function("a", "//", "//")', SyntaxError); 43 assertDoesNotThrow('Function("a", "//", "//")');
44 assertThrows('Function("a", "", "//", "//")', SyntaxError);
43 45
44 // Some embedders rely on the string representation of the resulting 46 // Some embedders rely on the string representation of the resulting
45 // function in cases where no formal parameters are specified. 47 // function in cases where no formal parameters are specified.
46 var asString = Function("return 23").toString(); 48 var asString = Function("return 23").toString();
47 assertSame("function anonymous() {\nreturn 23\n}", asString); 49 assertSame("function anonymous() {\nreturn 23\n}", asString);
OLDNEW
« no previous file with comments | « test/mjsunit/extra-commas.js ('k') | test/test262/test262.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698