class Parser::Source::Map::Variable
def initialize(name_l, expression_l=name_l)
def initialize(name_l, expression_l=name_l) @name = name_l super(expression_l) end
def update_operator(operator_l)
def update_operator(operator_l) @operator = operator_l end
def with_operator(operator_l)
- Api: - private
def with_operator(operator_l) with { |map| map.update_operator(operator_l) } end