Joram Vandemoortele

Results 14 comments of Joram Vandemoortele

About the inputmap. Wont this be a problem with different style of keyboards? On a azerty keyboard the shiftkeys aren't at the same position as those on a qwerty.

maybe also clarify that here H will be null? ``` var H = I var I = 3 System.print(H) // (null) ```

This should then also include Bool.toNum. so it works 2-way

Totally fair, didn't really do any checks what other languages do. Threw it together quick. This (or >= 0.5) made sense in my head, but maybe not something where we...

what if we also add isPositive would act the same as my current implementation asbool but offset by one then we would have asBool `!= 0` and isPositive `>=0`

I'm honestly really confused what num truthly has to do with an explicit cast to bool? I'm missing some knowledge I think

reworked after fasly discussion at https://github.com/wren-lang/wren/issues/991

doesn't this now run into the problem where a static finilizer doesn't have a easy way of knowing what instanced function to pass the call onto?

in case of foreign class the differentiator is needed for classes. allocator and finalizer already get called via separate functions (with different signatures) so its not needed, but I do...