between-tokens-ls.js (389B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: LINE SEPARATOR (U+2028) may occur between any two tokens 6 esid: sec-line-terminators 7 es5id: 7.3_A1.3 8 description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1 9 ---*/ 10 11 var x = 1 ; 12 13 assert.sameValue(x, 1); 14 15 reportCompare(0, 0);