json2object
json2object copied to clipboard
Type safe Haxe/JSON (de)serializer
The arguments to JsonParser are not documented at all, I was trying to figure out if "Unknown variable" can be set to be ignored. - `errors` is an existing array...
Here is an example of what I am trying to do: ```haxe typedef TypeToWrite = { var values:Array }; // This custom writer should be respected but is IGNORED for...
The `ignoreNullOptionals` argument to the `JsonWriter` is currently completely undocumented. This option requires passing `true` as the argument to the JsonWriter (not the write call itself), and allows you to...
```haxe // this works var x: Array; // this works var y: MyArray; // this does NOT work var z: MyMap; ``` where ```haxe abstract MyArray(Array) { ... } abstract...
Due to the numbering scheme that json2object employs, it would seem that redundant source files are being generated. For example, for a `JsonParser` that parses an object such as `MyObject`,...
I keep running into this issue where I cant build my haxe heaps project because of this error:  I can get rid of the error by restarting the build...
This attempts to update the reader and writer macros to play nicely with haxe nightlies completion. The type of the reader / writer is hashed and used as part of...
Hi, thanks for the wonderfull library. I tried to use a clone macro in a class that I parse somewhere else but json2object complained, so I ended up to manually...