TJSON icon indicating copy to clipboard operation
TJSON copied to clipboard

The tolerant JSON parser for Haxe

Results 14 TJSON issues
Sort by recently updated
recently updated
newest added

I've trying to add TJSON to my project directly importing code. When compiling I've an error: [LOG] Source/scripts/redevogames/redevoclient/utils/TJSON.hx:349: lines 349-360 : Abstract Map has no @:to function that accepts IMap...

Resolves #33. ``` haxelib/tjson/1,4,0/tjson/TJSON.hx:496: characters 11-29 : Warning : Std.is is deprecated. Use Std.isOfType instead. ```

``` haxelib/tjson/1,4,0/tjson/TJSON.hx:496: characters 11-29 : Warning : Std.is is deprecated. Use Std.isOfType instead. ```

exception on parsing a float value. since float use "," also the key:value separator to fix (sorry, I don't know how to make a PR) replace ``` if (inSymbol){ if(c=='...

Hi, I needed a parse of a StringMap so I added it. It works in my project but the test I added to TJSON fails. Using the same tjson file...

Would it be possible to extend this to support json's patching functionality, as defined in RFC 6902? http://jsonpatch.com/ https://tools.ietf.org/html/rfc6902

Parsing next string: ``` { //'a': 'b' } ``` Result: ``` JSON Data on line 3: Expected ':' but got '' instead. ``` At least on PHP platform. Important: line...

In order to leverage haxe class parsing you must have the "_hxcls" property set as the first entry, and this is an unintuitive requirement (and very restricting). `{"float":0.5,"_hxcls":"test.ClassTest"}` should work...