between-tokens-lf.js (369B)
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 FEED (U+000A) may occur between any two tokens 6 esid: sec-line-terminators 7 es5id: 7.3_A1.1_T2 8 description: Insert real LINE FEED between tokens of var x=1 9 ---*/ 10 11 var 12 x 13 = 14 1; 15 16 assert.sameValue(x, 1); 17 18 reportCompare(0, 0);