You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Send the following JSON into the JSONValue parser/lexer:
{
foo: "foo"
bar: "bar"
}
What is the expected output? What do you see instead?
This should produce an error because there is no comma between the value of foo
and the key bar. The correct JSON should be:
{
foo: "foo",
bar: "bar"
}
What version of the product are you using? On what operating system?
1.1
Original issue reported on code.google.com by bpontare...@gmail.com on 6 May 2011 at 6:30
Original issue reported on code.google.com by
bpontare...@gmail.com
on 6 May 2011 at 6:30The text was updated successfully, but these errors were encountered: