Mingun

Results 397 comments of Mingun

Yes, of course. I plan to add action to install it first, as described in the Sonar Qube documentation. Actually, I don't know any working solution, I just trying to...

Maybe just expose a constant with all implementing encodings? ```rust pub static ALL_ENCODINGS: [&'static Encoding; 40] = [ BIG5, EUC_JP, EUC_KR, GB18030, GBK, IBM866, ISO_2022_JP, ISO_8859_2, ISO_8859_3, ISO_8859_4, ISO_8859_5, ISO_8859_6,...

While this is documented sqlite behavior, probably it will be best to add a feature flag that enables generation of more predictable result if so many users complain about that...

You feel free to convert this issue to a discussion if you really want listen for proposals. Also, it seems you completely ignore the second part of my comment. I...

It is quite big improvement and I think it will be better to split it on several commits since otherwise it will be difficult to review. I suppose to split...

This will fix #236, but as @kevinmehall suggested in my issue, using https://github.com/fasterthanlime/pegviz is much better for debug rules.

It is easy to implement: ``` js String.prototype.dup = function(count) { return new Array(count).join(this); } /// @p Generated PEG parser /// @options JSON object with additional options /// @data string...

@vsemozhetbyt, actually, you grammar should issue a info/warning at build stage, because it accept only inputs, which are accepted by grammar ```peg root = "a"+ "b"* / "b"+ ``` but...

I invented some more use cases for use of annotations: - `@Override` -- rule overrides rule with same name from imported grammar - `@Abstract` -- rule must be overrided in...

After some time of speculations, I understood that annotations are necessary not only for rules, and shall be attached to any AST node. It can be used for: - `@Return()`...