Class: JMESPath::Lexer::CharacterStream Private

Inherits:
Object
  • Object
show all
Defined in:
lib/jmespath/lexer.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Constructor Details

#initialize(chars) ⇒ CharacterStream

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of CharacterStream.



309
310
311
312
# File 'lib/jmespath/lexer.rb', line 309

def initialize(chars)
  @chars = chars
  @position = 0
end

Instance Method Details

#currentObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



314
315
316
# File 'lib/jmespath/lexer.rb', line 314

def current
  @chars[@position]
end

#nextObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



318
319
320
321
# File 'lib/jmespath/lexer.rb', line 318

def next
  @position += 1
  @chars[@position]
end

#positionObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



323
324
325
# File 'lib/jmespath/lexer.rb', line 323

def position
  @position
end