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