Josiah Glosson

Results 105 comments of Josiah Glosson

I'm not entirely sure how to add tests for this. However, `JsonDataLoader` is now broken without this.

CFR decompilation: ```java @SafeVarargs public static Direct direct(Holder ... holderArray) { Holder[] holderArray2 = holderArray; int n = 0; while (n < holderArray2.length) { holderArray2 = holderArray2; Objects.requireNonNull(holderArray2[n]); n =...

Tracking this down further, this appears to actually be the fault of `gen_symbol_for`. Specifically, I believe my symbols got too big for `SymbolU16` due to it being non-sequential. However, the...

The thing with using `BufferBackend` with bigger symbols is that that actually negates all the memory savings that I have from it to begin with. In fact, it uses several...

This several MB more was with u32 actually. The `StringBackend` is actually the perfect sweet spot. Thanks for giving these different backends!