xyncro / chiron

JSON for F#
https://xyncro.tech/chiron
MIT License
173 stars 41 forks source link

Json.tryParse "null3" should raise Exception #82

Open ingted opened 7 years ago

ingted commented 7 years ago

Json.tryParse "null3"

val it : Choice<Json,string> = Choice1Of2 (Null ())

compare to

Json.tryParse "ddd"

val it : Choice<Json,string> = Choice2Of2 "Error in Ln: 1 Col: 1 ddd ^ Expecting: '"', '-', '0', '[', 'false', 'null', 'true' or '{' "