Shahar Soel

Results 187 comments of Shahar Soel

I've just learned a new world for POC, "spike" 😄 I don't know if it is worth it or not, depends how severe the issue of requiring a node.js runtime...

I think this could be implemented using token categories to create: - **IdentifierButNotVar** category.

Thanks for the example @moranje I was wondering how to integrate conventional commits and more automated releases in some of my projects and now I know I need to inspect...

Would Tree-Shaking assist here? - https://github.com/rollup/rollup#tree-shaking

### Context: To revert back to the **original** text an AST (**A**bstract **S**yntax **T**ree) would not be sufficient. For example given a JavaScript Grammar these two statements would normally have...

YAML is not a simple grammar. 😢 http://yaml.org/spec/1.2/spec.html It has different whitespace rules (meaningful vs ignored) depending on "styles" (block vs flow). Which can change multiple times in the same...

TinyC looks like a good example as it has both statements and expressions with binary operators while being very "tiny" 😄 https://github.com/antlr/grammars-v4/blob/master/tinyc/tinyc.g4

@dragostis What? Who? How? Why? 😄 I'm just **participating** in the discussion here as an author of another [parsing library](https://github.com/SAP/chevrotain)(In JavaScript) because tracking other similar projects leads to good ideas......

> Rust has the concept of being able to compile and test the code samples that are in the documentation **Nice!** Maybe I should learn some Rust 😄

There are some semantic differences which could make the translation more difficult. Antlr has a separate tokenizing as opposed to PEG which is lexerless. This means that issues such as...