# File lib/execjs/ruby_racer_runtime.rb, line 4
      def initialize(source = "")
        source = source.encode('UTF-8') if source.respond_to?(:encode)

        lock do
          @v8_context = ::V8::Context.new
          @v8_context.eval(source)
        end
      end