Changeset 9003 in webkit for trunk/JavaScriptCore/kjs/context.h
- Timestamp:
- Apr 12, 2005, 3:18:35 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/context.h
r6452 r9003 60 60 FunctionImp *_function; 61 61 const List *_arguments; 62 ProtectedObject activation; 62 // because ContextImp is always allocated on the stack, 63 // there is no need to protect various pointers from conservative 64 // GC since they will be caught by the conservative sweep anyway! 65 Object activation; 63 66 64 67 ScopeChain scope; 65 ProtectedObject variable;66 ProtectedObject thisVal;68 Object variable; 69 Object thisVal; 67 70 68 71 LabelStack ls;
Note:
See TracChangeset
for help on using the changeset viewer.