15.12.1.1-0-1.js (411B)
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-0-1 6 description: The JSON lexical grammar treats whitespace as a token seperator 7 ---*/ 8 9 assert.throws(SyntaxError, function() { 10 JSON.parse('12\t\r\n 34'); // should produce a syntax error as whitespace results in two tokens 11 }); 12 13 reportCompare(0, 0);