Sha256: e31c346f30890ea43541bc6e1c629ae52c787cb5e7d7c4070e3959ed435bd1cb
Contents?: true
Size: 514 Bytes
Versions: 14
Compression:
Stored size: 514 Bytes
Contents
# frozen_string_literal: true module Expressir module Liquid module Declarations class VariableDrop < ::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