I'm new to ANTLR and using ANTLR4 (4.7.2 Jar file). I'm currently working on Oracle Parser.
Is there a way to add a node (with some text) directly to the AST from the Parser or Lexer? I'm hiding comments in my Lexer and would like to add that directly to the tree.
Is it possible? I believe Less4j allows something similar.
ParserRuleContext
andTerminalNodeImpl
). – kaby76