Class: Puppet::Pops::Parser::LexerSupport::TokenValue

Inherits:
Puppet::Pops::Parser::Locatable show all
Defined in:
lib/puppet/pops/parser/lexer_support.rb

Overview

A TokenValue keeps track of the token symbol, the lexed text for the token, its length and its position in its source container. There is a cost associated with computing the line and position on line information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token_array, offset, locator) ⇒ TokenValue

Returns a new instance of TokenValue.



100
101
102
103
104
# File 'lib/puppet/pops/parser/lexer_support.rb', line 100

def initialize(token_array, offset, locator)
  @token_array = token_array
  @offset = offset
  @locator = locator
end

Instance Attribute Details

#locatorObject (readonly)



98
99
100
# File 'lib/puppet/pops/parser/lexer_support.rb', line 98

def locator
  @locator
end

#offsetObject (readonly)



97
98
99
# File 'lib/puppet/pops/parser/lexer_support.rb', line 97

def offset
  @offset
end

#token_arrayObject (readonly)



96
97
98
# File 'lib/puppet/pops/parser/lexer_support.rb', line 96

def token_array
  @token_array
end

Instance Method Details

#[](key) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/puppet/pops/parser/lexer_support.rb', line 110

def [](key)
  case key
  when :value
    @token_array[1]
  when :file
    @locator.file
  when :line
    @locator.line_for_offset(@offset)
  when :pos
    @locator.pos_on_line(@offset)
  when :length
    @token_array[2]
  when :locator
    @locator
  when :offset
    @offset
  else
    nil
  end
end

#lengthObject



106
107
108
# File 'lib/puppet/pops/parser/lexer_support.rb', line 106

def length
  @token_array[2]
end

#to_sObject



131
132
133
134
135
136
# File 'lib/puppet/pops/parser/lexer_support.rb', line 131

def to_s
  # This format is very compact and is intended for debugging output from racc parsser in
  # debug mode. If this is made more elaborate the output from a debug run becomes very hard to read.
  #
  "'#{self[:value]} #{@token_array[0]}'"
end