Interface AntlrContextProcessor<R extends org.antlr.v4.runtime.ParserRuleContext>

Type Parameters:
R - type of the parser rule context to be processed
All Known Subinterfaces:
IChContextProcessor, IMsContextProcessor, IPgContextProcessor
All Known Implementing Classes:
ChCustomParserListener, ChOverridesListener, MsCustomParserListener, MsOverridesListener, PgCustomParserListener, PgOverridesListener

public interface AntlrContextProcessor<R extends org.antlr.v4.runtime.ParserRuleContext>
Interface for processing ANTLR parser rule contexts with token streams
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(R rootCtx, org.antlr.v4.runtime.CommonTokenStream stream)
    Processes the ANTLR parser rule context with the given token stream
  • Method Details

    • process

      void process(R rootCtx, org.antlr.v4.runtime.CommonTokenStream stream)
      Processes the ANTLR parser rule context with the given token stream
      Parameters:
      rootCtx - the root parser rule context to process
      stream - the token stream associated with the context