Changeset 178856 in webkit for trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
- Timestamp:
- Jan 21, 2015, 1:43:55 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
r173178 r178856 33 33 struct ProtoCallFrame { 34 34 Register codeBlockValue; 35 Register scopeChainValue;36 35 Register calleeValue; 37 36 Register argCountAndCodeOriginValue; … … 41 40 JSValue *args; 42 41 43 void init(CodeBlock*, JS Scope*, JSObject*, JSValue, int, JSValue* otherArgs = 0);42 void init(CodeBlock*, JSObject*, JSValue, int, JSValue* otherArgs = 0); 44 43 45 44 CodeBlock* codeBlock() const { return codeBlockValue.Register::codeBlock(); } 46 45 void setCodeBlock(CodeBlock* codeBlock) { codeBlockValue = codeBlock; } 47 48 JSScope* scope() const { return scopeChainValue.Register::scope(); }49 void setScope(JSScope* scope) { scopeChainValue = scope; }50 46 51 47 JSObject* callee() const { return calleeValue.Register::function(); }
Note:
See TracChangeset
for help on using the changeset viewer.