15.12.1.1-g1-4.js (484B)
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-4 6 description: The JSON lexical grammar treats <SP> as a whitespace character 7 ---*/ 8 9 assert.sameValue(JSON.parse(' 1234'), 1234, '<SP> should be ignored'); 10 11 assert.throws(SyntaxError, function() { 12 JSON.parse('12 34'); 13 }, '<SP> should produce a syntax error as whitespace results in two tokens'); 14 15 reportCompare(0, 0);