Class: Antlr4::Runtime::LexerMoreAction

Inherits:
LexerAction show all
Includes:
Singleton
Defined in:
lib/antlr4/runtime/lexer_more_action.rb

Instance Method Summary collapse

Instance Method Details

#action_typeObject



6
7
8
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 6

def action_type
  LexerActionType::MORE
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 33

def eql?(other)
  other == self
end

#execute(lexer) ⇒ Object



14
15
16
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 14

def execute(lexer)
  lexer.more
end

#hashObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 18

def hash
  return @_hash unless @_hash.nil?

  hash_code = RumourHash.calculate([action_type])

  unless @_hash.nil?
    if hash_code == @_hash
      puts 'Same hash_code for LexerMoreAction'
    else
      puts 'Different hash_code for LexerMoreAction'
    end
  end
  @_hash = hash_code
end

#position_dependent?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 10

def position_dependent?
  false
end

#to_sObject



37
38
39
# File 'lib/antlr4/runtime/lexer_more_action.rb', line 37

def to_s
  'more'
end