Sha256: e50971df8c88a5a387b5dab325dfb5fb24d7592ba6b00015c72652e85048afbe
Contents?: true
Size: 514 Bytes
Versions: 14
Compression:
Stored size: 514 Bytes
Contents
# frozen_string_literal: true module Expressir module Liquid module Declarations class ConstantDrop < ::Expressir::Liquid::DeclarationDrop include ::Expressir::Liquid::IdentifierDrop def initialize(model) @model = model initialize_identifier(@model) super end def type drop_klass_by_model(@model.type) end def expression drop_klass_by_model(@model.expression) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems