Sha256: f75a5e3ee5ac184b9c491e5f072d82b091c5e68094c9547817108f986b2fad6c

Contents?: true

Size: 864 Bytes

Versions: 1

Compression:

Stored size: 864 Bytes

Contents

module Antlr4ruby
  class ParserInterpreter < Parser
    attr_reader atn: ATN
    attr_reader decision_to_dfa: Array[DFA]
    attr_reader grammar_file_name: String

    attr_accessor override_decision: Integer
    attr_accessor override_decision_alt: Integer
    attr_accessor override_decision_input_index: Integer
    attr_accessor override_decision_reached: bool
    attr_accessor override_decision_root: InterpreterRuleContext?
    # attr_accessor override_decision_root: InterpreterRuleContext
    attr_reader parent_context_stack: Vocabulary
    attr_accessor root_context: InterpreterRuleContext
    attr_reader rule_names: Array[String]
    attr_reader shared_context_cache: PredictionContextCache

    attr_reader vocabulary: Vocabulary

    def initialize: (String, Vocabulary, Array[String], ATN, _TokenStream) -> void

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
antlr4ruby-0.1.0 sig/antlr4ruby/parser_interpreter.rbs