module V8::Conversion::Code

def to_template

def to_template
  weakcell(:template) {V8::C::FunctionTemplate::New(InvocationHandler.new(self))}
end

def to_v8

def to_v8
  fn = to_template.GetFunction()
  V8::Context.link self, fn
  return fn
end