15.12.1.1-g1-3.js (486B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.12.1.1-g1-3 6 description: The JSON lexical grammar treats <LF> as a whitespace character 7 ---*/ 8 9 assert.sameValue(JSON.parse('\n1234'), 1234, '<LF> should be ignored'); 10 11 assert.throws(SyntaxError, function() { 12 JSON.parse('12\n34'); 13 }, '<LF> should produce a syntax error as whitespace results in two tokens'); 14 15 reportCompare(0, 0);