Modestas Valauskas
Modestas Valauskas
Consider that, e.g., GitHub has support for surfacing resolution information https://github.blog/2021-12-09-introducing-stack-graphs/ if a name resolution spec is available in the form of a stack graph spec: https://github.com/github/stack-graphs/tree/main/languages How are third...
iOS platforms do not support certain primitives needed for fast JITing in applications distributed through the App Store. JITing is needed for a fast wasm runtime. Wasmer [added support for...
I think it is safe to assume that all languages that have javascript as a compilation target will eventually support targeting wasm as a compilation target as well. As part...
@liamappelbe could https://api.dart.dev/stable/2.18.4/dart-ffi/NativeFinalizer-class.html be used to simplify wasm/bin/setup.dart by removing the dependency on dart_api_dl.h and finalizers.c? Have you considered this new API?
Slow CI
Once #112 (and some few other minor changes) land, we should be able to use prebuilt binaries for wasmer which will significantly speed up our CI.
It would be good to have some machinery that is able to generate bindings for any given WASM module i.e. generate type-safe APIs in Dart that would allow us to...
I'm trying to bind some WASM modules, and here is one error that is extremely confusing from the perspective of a user: https://github.com/dart-lang/wasm/blob/ddb2d46ac000827f44a3d18c6564b13b8b3876ef/wasm/lib/src/runtime.dart#L355-L365 ``` WasmRuntimeError: Failed to fill WASI imports....
Under the assumption that wasmer doesn't offer a way to asynchronously compile modules, we should investigate the new `Isolate.run` functionality for giving users the choice to asynchronously build wasmer modules....
Hi @nikomatsakis (and other maintainers) I wanted to ask about a weird observation that both, [yours](https://github.com/lalrpop/lalrpop/tree/master/lalrpop/src/lr1/lane_table) and [Xin Chen's](https://hyacc.sourceforge.net/files/chenx_dissertation.pdf) interpretation of Pager's lane table approach appear to exhibit. Consider your...
Hello @mdaines, (_I hope you don't mind another issue_) I think it would be awesome if there was a way to load sample grammars (and perhaps make it easy to...