package antlr
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- sealed trait Expr extends AnyRef
-
class
LogErrorListener extends BaseErrorListener
An ANTLR error listener that will log errors using the provided logger instead of printing them to stderr directly.
- class ParserJson extends Logging
- class ParserJsonVisitor extends jsonBaseVisitor[Any]
- class ParserVisitor extends copybookParserBaseVisitor[Expr]
- class Stack[A] extends Seq[A]
- class ThrowErrorStrategy extends DefaultErrorStrategy
-
class
copybookLexer extends Lexer
- Annotations
- @SuppressWarnings()
-
class
copybookParser extends Parser
- Annotations
- @SuppressWarnings()
-
class
copybookParserBaseVisitor[T] extends AbstractParseTreeVisitor[T] with copybookParserVisitor[T]
This class provides an empty implementation of
copybookParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods. -
trait
copybookParserVisitor[T] extends ParseTreeVisitor[T]
This interface defines a complete generic visitor for a parse tree produced by
copybookParser. -
class
jsonBaseVisitor[T] extends AbstractParseTreeVisitor[T] with jsonVisitor[T]
This class provides an empty implementation of
jsonVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods. -
class
jsonLexer extends Lexer
- Annotations
- @SuppressWarnings()
-
class
jsonParser extends Parser
- Annotations
- @SuppressWarnings()
-
trait
jsonVisitor[T] extends ParseTreeVisitor[T]
This interface defines a complete generic visitor for a parse tree produced by
jsonParser.
Value Members
- object ANTLRParser extends Logging
-
object
Stack
A tiny stack implementation (since mutable.Stack is deprecated (since 2.12.0)