OLD | NEW |
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 22 matching lines...) Expand all Loading... |
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 assertThrows('Function("a", "/*", "*/", "/**/");', SyntaxError); |
38 | 38 |
39 // Test whether line comments are handled correctly. | 39 // Test whether line comments are handled correctly. |
40 assertDoesNotThrow('Function("//", "//")'); | 40 assertDoesNotThrow('Function("//", "//")'); |
41 assertDoesNotThrow('Function("//", "//", "//")'); | 41 assertDoesNotThrow('Function("//", "//", "//")'); |
42 assertThrows('Function("a", "//", "//")', SyntaxError); | 42 assertThrows('Function("a", "//", "//")', SyntaxError); |
| 43 |
| 44 // Some embedders rely on the string representation of the resulting |
| 45 // function in cases where no formal parameters are specified. |
| 46 var asString = Function("return 23").toString(); |
| 47 assertSame("function anonymous() {\nreturn 23\n}", asString); |
OLD | NEW |