Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 1a09c602baa574c64cab8cc9e556d8f7ed7bcfbd..2135d5550139c1e5722e9c04d2851498dc804caa 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7514,9 +7514,11 @@ class JSFunction: public JSObject { |
inline Context* native_context(); |
static Handle<Object> GetName(Isolate* isolate, Handle<JSFunction> function); |
- static MaybeHandle<Smi> GetLength(Isolate* isolate, |
- Handle<JSFunction> function); |
+ static MUST_USE_RESULT MaybeHandle<Smi> GetLength( |
+ Isolate* isolate, Handle<JSFunction> function); |
static Handle<Context> GetFunctionRealm(Handle<JSFunction> function); |
+ static Handle<Object> GetPrototype(Isolate* isolate, |
+ Handle<JSFunction> function); |
// [code]: The generated code object for this function. Executed |
// when the function is invoked, e.g. foo() or new foo(). See |