| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 7c8b6091d5aa9d34ab32f2a4caed87a311684236..095b944d3b139bb87c0889a4053b1836b1864788 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6728,10 +6728,14 @@ class SharedFunctionInfo: public HeapObject {
|
|
|
| inline bool IsApiFunction();
|
| inline FunctionTemplateInfo* get_api_func_data();
|
| + inline void set_api_func_data(FunctionTemplateInfo* data);
|
| inline bool HasBuiltinFunctionId();
|
| inline BuiltinFunctionId builtin_function_id();
|
| + inline void set_builtin_function_id(BuiltinFunctionId id);
|
| inline bool HasBytecodeArray();
|
| inline BytecodeArray* bytecode_array();
|
| + inline void set_bytecode_array(BytecodeArray* bytecode);
|
| + inline void ClearBytecodeArray();
|
|
|
| // [script info]: Script from which the function originates.
|
| DECL_ACCESSORS(script, Object)
|
|
|