grammars-v4 icon indicating copy to clipboard operation
grammars-v4 copied to clipboard

Grammars written for ANTLR v4; expectation that the grammars are free of actions.

Results 432 grammars-v4 issues
Sort by recently updated
recently updated
newest added
trafficstars

When using tsql parsing, spaces are eliminated in the parsing statement My sql statement is `SELECT * FROM Customers WHERE CustomerName IN ('Jane Smith');`, but the parsing statement is `SELECT*FROMCustomersWHERECustomerNameIN('Jane...

tsql

I added the TypeScript class for using the php grammar from the typescript target. It's very similar to the JavaScript one.

php
target:typescript

Hi, I have a question regarding the tree that's generated for the following Java8 code: ```java class C { public void m() { int i = 0; } } ```...

csharp
target:java

https://github.com/antlr/grammars-v4/blob/master/python/python3/Go/python3_lexer_base.go parse fail : we will lost the first token we can fix it after "next := l.BaseLexer.NextToken()" : add l.tokens ,like this: if len(l.tokens) != 0 && l.tokens[len(l.tokens)-1] !=...

The TypeScript lexer and parser versions are too low, so parsing is not possible when running open source. Please update typescript to the latest version.

typescript

- I tried to translate [/antlr4/Java/LexerAdaptor.java](https://github.com/antlr/grammars-v4/blob/master/antlr/antlr4/Java/LexerAdaptor.java) from Java to Dart This PR may have some inappropriate aspects as I cannot find the contribution guide. Please feel free to point it...

When a document has attributes mixed with variables, it fails to parse correctly, as it believes module level declarations should occur after all attribute declarations. This seems to be not...

vba

I tried to parse the `vb6/examples/form1.vb` file and got the same error in `vb6/examples/form1.vb.errors`, which is: ``` line 1:13 mismatched input 'Form1' expecting ``` The `vb6/examples/form1.vb` file contains: ``` Public...

vb