# File lib/execjs/mustang_runtime.rb, line 19
      def eval(source, options = {})
        source = source.encode('UTF-8') if source.respond_to?(:encode)

        if /\S/ =~ source
          unbox @v8_context.eval("(#{source})")
        end
      end