Sha256: e5d4a5e43b7971ed742d72cbf5247c82225dc42d9e3a07334fc6ed6b9d1238cc
Contents?: true
Size: 489 Bytes
Versions: 14
Compression:
Stored size: 489 Bytes
Contents
# frozen_string_literal: true module Expressir module Liquid module DataTypes class BagDrop < ::Expressir::Liquid::DataTypeDrop def initialize(model) @model = model super end def bound1 drop_klass_by_model(@model.bound1) end def bound2 drop_klass_by_model(@model.bound2) end def base_type drop_klass_by_model(@model.base_type) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems