class JMESPath::Token

@api private

Constants

BINDING_POWER

binding power @api private

NULL_TOKEN

@api private

Public Class Methods

new(type, value, position) click to toggle source

@param [Symbol] type @param [Mixed] value @param [Integer] position

Calls superclass method
# File lib/jmespath/token.rb, line 36
def initialize(type, value, position)
  super(type, value, position, BINDING_POWER[type])
end