# File lib/less/java_script/rhino_context.rb, line 62
      def method_missing(symbol, *args)
        if @rhino_context.respond_to?(symbol)
          @rhino_context.send(symbol, *args)
        else
          super
        end
      end