between-tokens-cr.js (451B)
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: CARRIAGE RETURN (U+000D) may occur between any two tokens 6 esid: sec-line-terminators 7 es5id: 7.3_A1.2_T2 8 description: Insert real CARRIAGE RETURN between tokens of var x=1 9 ---*/ 10 11 varx=1; 12 13 if (x !== 1) { 14 throw new Test262Error('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x)); 15 } 16 17 reportCompare(0, 0);