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 317 grammars-v4 issues
Sort by recently updated
recently updated
newest added

As per #2567, we need to add more testing, this time for ARM C++ targets. Adding ARM testing will probably add to the list of "symbol conflicts" for the Cpp...

See this [StackOverflow question and answer](https://stackoverflow.com/questions/71750984). The only way to make progress is to note the problem right here and to work on it at some point rather than just...

matlab

**Add lexer definitions for implicit tokens for T-SQL:** ANTLR4 is spitting a bunch of warnings about implicit tokens, e.g. `PARSEONLY`, `SHOWPLAN_ALL`, etc., so I explicitly defined these in the lexer...

tsql
example

hi, im trying to build an automation that can convert any SQL to spark SQL,any help with the grammer files or other way of doing it.thanks

Since there doesn't exist this kind of issue here. I would like to request if possible grammer for prover9. [This repo of mine in readme section contains usefull links with...

new-grammar

Added compilable file all_in_one.c, java test program Changed grammar is tested

c
example

Given the below code(code snippet from [here](https://github.com/json-iterator/go/blob/master/any.go#L260)): ```go var anyType = reflect2.TypeOfPtr((*Any)(nil)).Elem() ``` if I'm not wrong, `(*Any)(nil)` should be a conversion expression. But it seems it's parsed as an...

go

```ts function processEntity(e?: Entity) { validateEntity(e); let s = e!.name; // Assert that e is non-null and access name } ``` Ref: https://stackoverflow.com/questions/47704652/what-does-exclamation-point-after-variable-mean-in-javascript

typescript

Consider the T-SQL statement: ```sql ALTER TABLE [dbo].[MyTable] SWITCH PARTITION 1 TO [dbo].[MyTable_Tombstone] ``` The current [T-SQL Parser](https://github.com/antlr/grammars-v4/blob/master/sql/tsql/TSqlParser.g4) appears to break this statement into a parse tree with three top-level...

tsql

I try to use ANTLR grammar to prase Csharp lambda expression. I did some search and didn't find anything that would move me in the right direction. in this file,...

question
csharp