| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: Correct interpretation of multi line comments |
| description: Create comments with any code |
| /* $ERROR('#1: Correct interpretation multi line comments'); |
| $ERROR('#2: var x = 0; /* x = 1;*/ x === 0. Actual: ' + (x)); |
| $ERROR('#3: var /* y = 1; */ \\n y; y === undefined. Actual: ' + (y)); |
| $ERROR('#4: var /* y = 1; */ y; y === undefined. Actual: ' + (y)); |
| $ERROR('#5: Correct interpretation multi line comments'); |
| $ERROR('#6: /*var this.y = 1;*/ \\n this.y++; y === Not-a-Number. Actual: ' + (y)); |
| var string = "/*var y = 0*/" /* y = 1;*/ |
| if (string !== "/*var y = 0*/") { |
| $ERROR('#7: var string = "/*var y = 0*/" /* y = 1;*/ string === "//var y = 0"'); |
| var string = "/*var y = 0" /* y = 1;*/ |
| if (string !== "/*var y = 0") { |
| $ERROR('#8: var string = "/*var y = 0" /* y = 1;*/ string === "//var y = 0"'); |
| /** $ERROR('#9: Correct interpretation multi line comments'); |
| /* $ERROR('#10: Correct interpretation multi line comments'); |
| /****** $ERROR('#11: Correct interpretation multi line comments');********* |