mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
26 lines
No EOL
465 B
Ruby
26 lines
No EOL
465 B
Ruby
class V8::Conversion
|
|
module Method
|
|
include V8::Conversion::Code
|
|
|
|
def to_v8
|
|
template = @@method_cache[self] ||= to_template
|
|
template.GetFunction()
|
|
end
|
|
|
|
class MethodCache
|
|
def initialize
|
|
@map = V8::Weak::WeakValueMap.new
|
|
end
|
|
|
|
def [](method)
|
|
@map[method.to_s]
|
|
end
|
|
|
|
def []=(method, template)
|
|
@map[method.to_s] = template
|
|
end
|
|
end
|
|
|
|
@@method_cache = MethodCache.new
|
|
end
|
|
end |