Modestas Valauskas

Results 117 comments of Modestas Valauskas

That would probably work, but I have to say that I do prefer the label-based solution more. In my opinion, being able to use a statement that immediately exits the...

Note that Zig has recently added support for a feature that is very similar to switch case labels in Dart. See: - https://github.com/ziglang/zig/issues/8220 - https://github.com/ziglang/zig/pull/21257 Their new feature goes a...

It would be great to see the issue description updated to make it more relevant to the state that Dart is in today and not 2013. * Dart has added...

@lawcho I was wondering why you chose [lalrpop](https://github.com/lalrpop/lalrpop) and not [treesitter](https://tree-sitter.github.io/tree-sitter/)?

I'd like to present you some arguments for why you should consider tree sitter if you would consider alternatives. * tree sitter is based on a more powerful parsing theory,...

I was referring to these dependencies: https://crates.io/crates/lalrpop/0.19.8/dependencies most of them are prereleases and over half of them haven’t received an update in over six months. I agree, Node is suboptimal,...

A quick comment on the other proposed alternatives: @zicklag Pest and peg seem to use [PEG](https://en.wikipedia.org/wiki/Parsing_expression_grammar)s as their underlying parsing theory. PEGs are convenient, but only because they hide the...