Sha256: 6086c997c75b59d1850001b499c7ec774989275ed8a9e6ed1006aad97992de3f
Contents?: true
Size: 403 Bytes
Versions: 1
Compression:
Stored size: 403 Bytes
Contents
module Antlr4ruby # @final LexerAction class LexerMoreAction INSTANCE = LexerMoreAction.new def get_action_type :MORE end def is_position_dependent false end def execute(lexer) lexer.mode end def hash # todo end def eql?(other) # todo end def to_s 'more' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
antlr4ruby-0.1.0 | lib/antlr4ruby/atn/action/lexer_more_action.rb |