Sha256: 489b7ab2cc83f78a689ab8dc14f90bf2a25af4d0737473624ef40a7d710ad891
Contents?: true
Size: 482 Bytes
Versions: 70
Compression:
Stored size: 482 Bytes
Contents
module Parser module Source class Map::Variable < Map attr_reader :name attr_reader :operator def initialize(name_l, expression_l=name_l) @name = name_l super(expression_l) end ## # @api private # def with_operator(operator_l) with { |map| map.update_operator(operator_l) } end protected def update_operator(operator_l) @operator = operator_l end end end end
Version data entries
70 entries across 70 versions & 5 rubygems