class Liquid::Drop

def liquid_method_missing(method)

Catch all for the method
def liquid_method_missing(method)
  return nil unless @context&.strict_variables
  raise Liquid::UndefinedDropMethod, "undefined method #{method}"
end