Sha256: aad4a913718acf5e014bc9dd319c7dbf98647386a5cfa2ae871924759b699de4
Contents?: true
Size: 518 Bytes
Versions: 14
Compression:
Stored size: 518 Bytes
Contents
# frozen_string_literal: true module Expressir module Liquid module SupertypeExpressions class BinarySupertypeExpressionDrop < ::Expressir::Liquid::SupertypeExpressionDrop def initialize(model) @model = model super end def operator @model.operator end def operand1 drop_klass_by_model(@model.operand1) end def operand2 drop_klass_by_model(@model.operand2) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems