Martin Kustermann
Martin Kustermann
@mraleph Maybe you can upstream those changes you already made? (e.g. specialise the internal int64 (de)coding logic for VM vs non-VM)
Couldn't we at least change `class Int64` to allow it to be as tight as `_Mint` box. Something like: ```dart const bool isVm = identicial(0, 0.0); abstract class Int64 {...
@askeksa-google @mraleph We should consider adding this benchmark to golem.
Another thing is that I believe loading CPU profiles can freeze the UI for a while - most likely due to all this work happening synchronously without any yields to...
Friendly ping. @kenzieschmoll @bkonyi Are there plans on improving this in the short/mid term?
This happened again today. The test is written horribly, used fixed numbers for server socket ports, has dead code in it, is inconsistent, ... But I think the root cause...
Propagating unwind error will need checking on return from non-leaf ffi calls. In some sense this is similar to b113fffb65a002accf53724e5d57110ad215b5f7 which has added checking whether return values are exceptions and...
The `ffi/callback_unwind_error_test` flaked again today. The work to make flutter hot-restart work better will require shutting the entire isolate group down on flutter hot-restart, which will send kill messages to...
> Are you seeing this discrepancy even in the allowed types or just the disallowed types (arbitrary Dart objects)? I meant the discrepancy of instances of user-defined classes. We do...
> While ideally there would be a way to avoid the copies entirely, copying and initializing very large lists seems unreasonably slow with .toJS, there must be a lot of...