module Sass::Plugin

def method_missing(method, *args, &block)

Other tags:
    See: Sass::Plugin::Compiler -
    See: #compiler -
def method_missing(method, *args, &block)
  if compiler.respond_to?(method)
    compiler.send(method, *args, &block)
  else
    super
  end
end