Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index 141fc5e66e8279c9d9d7ed48e6bdb5c009776a2f..24ffe7977b33823eef055f4d8311c123276a20a4 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -559,25 +559,8 @@ class Factory FINAL { |
return NumberToString(NewNumberFromUint(value)); |
} |
- enum ApiInstanceType { |
- JavaScriptObjectType, |
- GlobalObjectType, |
- GlobalProxyType |
- }; |
- |
- Handle<JSFunction> CreateApiFunction( |
- Handle<FunctionTemplateInfo> data, |
- Handle<Object> prototype, |
- ApiInstanceType type = JavaScriptObjectType); |
- |
Handle<JSFunction> InstallMembers(Handle<JSFunction> function); |
- // Installs interceptors on the instance. 'desc' is a function template, |
- // and instance is an object instance created by the function of this |
- // function template. |
- MUST_USE_RESULT MaybeHandle<FunctionTemplateInfo> ConfigureInstance( |
- Handle<FunctionTemplateInfo> desc, Handle<JSObject> instance); |
- |
#define ROOT_ACCESSOR(type, name, camel_name) \ |
inline Handle<type> name() { \ |
return Handle<type>(bit_cast<type**>( \ |