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.



303
304
305
306
# File 'lib/jmespath/lexer.rb', line 303

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.



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

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.



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

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.



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

def position
  @position
end