longdt
longdt
so this simple bug still wasn't fixed???
Looks good to me. Thanks
@zapov Test case is here: https://github.com/longdt/dsl-json-parse-number
and this is my workaround solution: ``` public abstract class BigIntegerConverter { private static final VarHandle JSON_READER_CURRENT_INDEX; static { try { JSON_READER_CURRENT_INDEX = MethodHandles .privateLookupIn(JsonReader.class, MethodHandles.lookup()) .findVarHandle(JsonReader.class, "currentIndex", int.class); }...
@zapov you can check this repo: https://github.com/longdt/dsl-json-ext I write this to provide snake case naming strategy. You can run test case inside module `test-functional`, but first you need remove some...