| Index: Source/bindings/templates/interface.cpp
|
| diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp
|
| index 5264580205f0a75421733032de22a63b1fd8a39e..11faf14de0e2fba4bc8b05772b15665ead8b5648 100644
|
| --- a/Source/bindings/templates/interface.cpp
|
| +++ b/Source/bindings/templates/interface.cpp
|
| @@ -463,4 +463,10 @@ void {{v8_class_name}}::derefObject(void* object)
|
| fromInternalPointer(object)->deref();
|
| }
|
|
|
| +template<>
|
| +v8::Handle<v8::Value> toV8NoInline({{cpp_class_name}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| +{
|
| + return toV8(impl, creationContext, isolate);
|
| +}
|
| +
|
| {% endblock %}
|
|
|