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 Attribute Summary collapse

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.



365
366
367
368
# File 'lib/jmespath/lexer.rb', line 365

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

Instance Attribute Details

#positionObject (readonly)

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.



379
380
381
# File 'lib/jmespath/lexer.rb', line 379

def position
  @position
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.



370
371
372
# File 'lib/jmespath/lexer.rb', line 370

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.



374
375
376
377
# File 'lib/jmespath/lexer.rb', line 374

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