jsonaf icon indicating copy to clipboard operation
jsonaf copied to clipboard

Results 4 jsonaf issues
Sort by recently updated
recently updated
newest added

I want to use jsonaf in another library. I thought I could get away, in the short term, with just vendoring it, but this turns out to [not work](https://github.com/ocaml/dune/issues/3335). Would...

Hi. I debugged and "fixed" (by copying/pasting [code from Yojson](https://github.com/ocaml-community/yojson/blob/0031b1bb9cf15aa54493a39c495a5c78bd2a2c43/lib/common.ml#L16)) the unicode code point decoding. Prior to this PR, this is the behavior of jsonaf: ```ocaml match Jsonaf.of_string {| {...

I came across https://github.com/nst/JSONTestSuite and thought I should test jsonaf on them. It identifies a bunch of things that shouldn't parse but do. I think a lot of it is...

This code: ```ocaml Jsonaf.of_string "[0, 1, 2}" ``` produces a result with error: `"json > ]: satisfy"`, which is cryptic. I would expect something more along the lines of `"expected...