class Parser::Source::Map::Constant

def initialize(double_colon, name, expression)

def initialize(double_colon, name, expression)
  @double_colon, @name = double_colon, name
  super(expression)
end

def update_operator(operator_l)

def update_operator(operator_l)
  @operator = operator_l
end

def with_operator(operator_l)

Other tags:
    Api: - private
def with_operator(operator_l)
  with { |map| map.update_operator(operator_l) }
end