Ömer Sinan Ağacan
Ömer Sinan Ağacan
It seems difficult to support this syntax with full generality. For example ``` ('a' ? 'c')+ => ... ``` Here type of `x` is `Vec
@cla-bot check
> One thing to note is that this can't be done in a backwards-compatible manner, because Target currently implements Copy. `Send` and `Sync` will also be lost if we simply...
> how much of an effort do you think it would be to use this new DynamicFunctionInvocation(c, Arguments()) Kernel construct? This should be a straightforward change in dart2wasm. I think...
With the current SDK main branch async tests also pass: ``` $ dart test -p chrome --compiler dart2wasm Building package executable... (3.9s) Built test:test. 00:06 +290: [Chrome, Dart2Wasm] test/stream_queue_test.dart: startTransaction...
It seems like you either did not run `make`, or it failed. Try running `make` and then running `i3lock-fancy-rapid`. If it's still failing, paste the `make` output here so that...
We have a similar use case in dart2wasm. Dart standard library has a few typed array types like `Float32List`, `Int64List` that store the elements unboxed. These types use a byte...
Would multi-byte read and write instructions for `array i8` cause any redundancy in the current MVP GC spec? At least for aligned reads I think a 4-byte read from an...
@xujuntwt95329 the linear memory allocation will need a reference count. When it's shared with a manually-managed language (e.g. C++) the refcount will be decremented when freeing the array. When it's...
@xujuntwt95329 > So the wasm module need to expose a function to host for decreasing ref count during finalizing, right? Yes. > But when the wasm runtime is doing garbage...