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.



109
110
111
112
113
# File 'lib/puppet/pops/parser/lexer_support.rb', line 109

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

Instance Attribute Details

#locatorObject (readonly)



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

def locator
  @locator
end

#offsetObject (readonly)



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

def offset
  @offset
end

#token_arrayObject (readonly)



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

def token_array
  @token_array
end

Instance Method Details

#[](key) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/puppet/pops/parser/lexer_support.rb', line 119

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



115
116
117
# File 'lib/puppet/pops/parser/lexer_support.rb', line 115

def length
  @token_array[2]
end

#to_sObject



140
141
142
143
144
145
# File 'lib/puppet/pops/parser/lexer_support.rb', line 140

def to_s
  # This format is very compact and is intended for debugging output from racc parser 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