Changeset 80598 in webkit for trunk/Source/JavaScriptCore/runtime/JSFunction.h
- Timestamp:
- Mar 8, 2011, 3:17:32 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSFunction.h
r79904 r80598 35 35 class JSGlobalObject; 36 36 class NativeExecutable; 37 class VPtrHackExecutable; 37 38 38 39 EncodedJSValue JSC_HOST_CALL callHostFunctionAsConstructor(ExecState*); … … 46 47 public: 47 48 JSFunction(ExecState*, JSGlobalObject*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeFunction); 48 JSFunction(ExecState*, JSGlobalObject*, NonNullPassRefPtr<Structure>, int length, const Identifier&, PassRefPtr<NativeExecutable>);49 JSFunction(ExecState*, NonNullPassRefPtr<FunctionExecutable>, ScopeChainNode*);49 JSFunction(ExecState*, JSGlobalObject*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeExecutable*); 50 JSFunction(ExecState*, FunctionExecutable*, ScopeChainNode*); 50 51 virtual ~JSFunction(); 51 52 … … 87 88 88 89 private: 89 JSFunction(NonNullPassRefPtr<Structure> );90 JSFunction(NonNullPassRefPtr<Structure>, VPtrHackExecutable*); 90 91 91 92 bool isHostFunctionNonInline() const; … … 103 104 static JSValue lengthGetter(ExecState*, JSValue, const Identifier&); 104 105 105 RefPtr<ExecutableBase> m_executable;106 WriteBarrier<ExecutableBase> m_executable; 106 107 WriteBarrier<ScopeChainNode> m_scopeChain; 107 108 };
Note:
See TracChangeset
for help on using the changeset viewer.