From 9c8b1800b90e14b643bab6ada8e96f8f850e84a6 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Wed, 20 Oct 2010 07:22:15 -0700 Subject: fixed negative numbers in Json --- src/Parser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Parser.js b/src/Parser.js index 0970144f..7ad65f32 100644 --- a/src/Parser.js +++ b/src/Parser.js @@ -32,7 +32,7 @@ function lex(text, parseStringsForObjects){ index = 0, json = [], ch, - lastCh = ','; // can start regexp + lastCh = ':'; // can start regexp while (index < text.length) { ch = text.charAt(index); @@ -64,7 +64,7 @@ function lex(text, parseStringsForObjects){ tokens.push({index:index, text:ch2, fn:fn2}); index += 2; } else if (fn) { - tokens.push({index:index, text:ch, fn:fn}); + tokens.push({index:index, text:ch, fn:fn, json: was('[,:') && is('+-')}); index += 1; } else { throw "Lexer Error: Unexpected next character [" + -- cgit v1.2.3