Sha256: 064b123a2f39c5921a4563dffe2c83568733a216c60ff0129e2bb67422a45c45
Contents?: true
Size: 543 Bytes
Versions: 14
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module Expressir module Liquid module Expressions class QueryExpressionDrop < ::Expressir::Liquid::ExpressionDrop include ::Expressir::Liquid::IdentifierDrop def initialize(model) @model = model initialize_identifier(@model) super end def aggregate_source drop_klass_by_model(@model.aggregate_source) end def expression drop_klass_by_model(@model.expression) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems