Mingun

Results 397 comments of Mingun

The biggest problem at the moment is that PRs just don't reviewed by maintainers and not merged... which means that community is effectively dead. [I've start to rewriting](https://github.com/Mingun/ksc-rs) compiler in...

Once such documentation is created, it will be easier to implement #404

You can try to move `size` to your `content` attribute: ```yaml seq: - id: files type: file repeat: eos types: file_header: seq: - id: file_size type: u4 file: seq: -...

Related issue: https://github.com/kaitai-io/kaitai_struct/issues/599

Yes, I actually use stack trace and debug code for now to understand, what is wrong, but that is very hard work. Anyway, it still say nothing about actual position...

Honestly, I don't see how the variant ```js var MyError = function(...) { init(this, ...); } ``` differs from the variant ```js class MyError { constructor(...) { super(...); } }...

May be name key `expect`? I think, is sounds better: ```yaml id: answer expect: 0x42 expect: min: 42 max: 42 any-of: [answer] expr: _ == 42

> I don't see anything wrong with that, and I don't think that forbidding it brings something positive That seems valuable, but it is inconsistent with that fact that `s01`,...

А там парсер рукописный (и где он вообще)? Обычно если парсер в виде какой-то грамматики, то вносить изменения не сложно, что мелкие, что средней тяжести.