Modestas Valauskas

Results 117 comments of Modestas Valauskas

For anyone looking into using this approach to implement more abstract constructs in Dart, I've shared an implementation of a catamorphism [here](https://github.com/dart-lang/language/issues/2880). It's a little tricky to get there from...

I've just noticed that this issue is still open. Since @spebbe appears to have moved on (i.e., dartz appears to no longer be actively maintained), and there are other libraries...

> In this example, it wouldn't be possible to do that -- [[ could perform a call and a return or two calls. So, if I understood you correctly, what...

I completely agree that LALR conflicts are hard to debug. However, the thing about firstsets is that they are actually relatively easy to understand and explain. One only needs to...

You said: > Technically, the grammar is compiled into a deterministic automaton, but in order to make a parse tree, the path through the original nondeterministic automaton has to be...

It would be great if the decision to implement this feature would take some UX testing into consideration. I don't think that this feature is a great fit for Dart...

Rusts solution to this issue: https://rustwasm.github.io/wasm-bindgen/

@dkbast & @Divit-vaghani thank you for reporting that you are having issues with getting this package to work for you. I'm wondering, have you tried following the tutorial (that can...

If and after #105 lands, the unused native calls and finalizer.c bindings + the native dart bindings should probably be removed? I hope you could do this part @liamappelbe since...

I've looked a bit into how Strings could be efficiently bridged across Wasm -> Dart and it seems like Dart_NewExternalXString in `dart_api.h` could help here. I don't see any alternative...