Colin Alworth

Results 246 comments of Colin Alworth

I suggest starting with a resource for how to use IndexedDB in general in the browser - the API should be the same, but the syntax will just be java...

Sam, I started on this a while ago because I agree it seems like the perfect use case for j2cl/gwt. If memory serves, you're mostly interested in it working bazel...

Following up on this: I spent a few hours a week ago and got a couple of "contrib" sorts of externs building into apparently usable jars - though I haven't...

* https://github.com/Vertispan/gwt-ace/ * https://github.com/Vertispan/gwt-googlemaps-api/ (note that this does not build presently since elemental2 master doesn't either, and that's how bazel plays. the gwt-ace project has a workaround that I'll move...

Sorry, lost track of this. Depending on releases is a non-starter, since j2cl "release" would need to be a specific sha (better to "just use latest" until there is a...

It looks you are trying to run this from inside the JVM, instead of as JS, and that isn't going to work - these "native" methods are implemented by the...

If any chance is made here, the same should probably go for public Uint8Array(double[] length) {} I do see that there is an integer_entities entry for public Uint8Array(double length) {}...

Thanks for the thought on asByte(), that will help a few cases of unboxing/casting. Doesn't help much for incoming values, or is there a "trust me, this is safe" cast...

We iterated on this a bit in gitter, and here's our conclusion: The original code that worked in elemtental2 1.0.0-RC1 worked fine, using ``` for (MutationRecord record : recordJsArray)... ```...

@rluble yes, the first workaround is what we did after figuring out what chrome was doing wrong (though we cast the array to `JsArray` first, I didn't realize we could...