class Antlr4::Runtime::NotSetTransition
Public Class Methods
new(target, set)
click to toggle source
Calls superclass method
# File lib/antlr4/runtime/not_set_transition.rb, line 4 def initialize(target, set) super(target, set) end
Public Instance Methods
matches(symbol, min_vocab_symbol, max_vocab_symbol)
click to toggle source
Calls superclass method
# File lib/antlr4/runtime/not_set_transition.rb, line 12 def matches(symbol, min_vocab_symbol, max_vocab_symbol) (symbol >= min_vocab_symbol) && (symbol <= max_vocab_symbol) && !super end
serialization_type()
click to toggle source
# File lib/antlr4/runtime/not_set_transition.rb, line 8 def serialization_type NOT_SET end
to_s()
click to toggle source
Calls superclass method
# File lib/antlr4/runtime/not_set_transition.rb, line 16 def to_s '~' + super.to_s end