class Dry::Schema::Macros::DSL

def append_macro(macro_type)

Other tags:
    Api: - private
def append_macro(macro_type)
  macro = macro_type.new(schema_dsl: schema_dsl, name: name)
  yield(macro)
  if chain
    trace << macro
    self
  else
    macro
  end
end