grammars-v4
grammars-v4 copied to clipboard
Grammars written for ANTLR v4; expectation that the grammars are free of actions.
Hi. (I screwed up and push to master despite having a git branch command in my history. Weird.) Related to supporting lab.antlr.og and https://github.com/antlr/antlr4-lab/issues/11... @teverett @kaby76 @KvanTTT please take a...
The CI workflow takes a couple of hours. For most cases, e.g., update to a single grammar, it should not. The build should only test what was really changed, even...
The following statement has parse error for values part: ```sql CREATE TRIGGER `trigger_item_insert_audit` AFTER INSERT ON `item_inventory` FOR EACH ROW BEGIN INSERT INTO item_inventory_audit(item_id,price,created_on,quantity) VALUES(NEW.id, NEW.price, NOW(), NEW.quantity); END; ```...
The CPP14 grammar file (liked below) describes 7 unary operators, of which the OR operator is one of them. The CPP14 standard does not describe such an operator nor is...
I found this during testing of PR #2855, but it's an existing problem. That change merely upgraded it from a hidden error to a test case failure. For example, the...
2308
I'm looking for support of ignore files, that follow the ignore language, like: * gitignore * npmignore * prettierignore * eslintignore * vscodeignore
I tried to parse the PostgreSQL using the c# code generated by PostgreSQLLexer.g4 and PostgreSQLParser.g4, but I found that the body of function and procedure always be parsed as AnysconstContext,...