Changeset 47404 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Aug 17, 2009, 6:00:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObject.h
r47304 r47404 39 39 class ErrorConstructor; 40 40 class FunctionPrototype; 41 class GlobalCodeBlock; 41 42 class GlobalEvalFunction; 42 43 class NativeErrorConstructor; 43 class GlobalCodeBlock; 44 class ObjectConstructor; 44 class ProgramCodeBlock; 45 45 class PrototypeFunction; 46 46 class RegExpConstructor; … … 62 62 , registerArraySize(0) 63 63 , globalScopeChain(NoScopeChain()) 64 , objectConstructor(0)65 64 , regExpConstructor(0) 66 65 , errorConstructor(0) … … 74 73 , callFunction(0) 75 74 , applyFunction(0) 76 , objectToStringFunction(0)77 , objectToLocaleStringFunction(0)78 75 , objectPrototype(0) 79 76 , functionPrototype(0) … … 104 101 int recursion; 105 102 106 ObjectConstructor* objectConstructor;107 103 RegExpConstructor* regExpConstructor; 108 104 ErrorConstructor* errorConstructor; … … 117 113 NativeFunctionWrapper* callFunction; 118 114 NativeFunctionWrapper* applyFunction; 119 NativeFunctionWrapper* objectToStringFunction;120 NativeFunctionWrapper* objectToLocaleStringFunction;121 115 122 116 ObjectPrototype* objectPrototype; … … 191 185 // replaces the global object's associated property. 192 186 193 ObjectConstructor* objectConstructor() const { return d()->objectConstructor; }194 187 RegExpConstructor* regExpConstructor() const { return d()->regExpConstructor; } 195 188 … … 212 205 DatePrototype* datePrototype() const { return d()->datePrototype; } 213 206 RegExpPrototype* regExpPrototype() const { return d()->regExpPrototype; } 214 215 NativeFunctionWrapper* objectToStringFunction() const { return d()->objectToStringFunction; }216 NativeFunctionWrapper* objectToLocaleStringFunction() const { return d()->objectToLocaleStringFunction; }217 207 218 208 JSObject* methodCallDummy() const { return d()->methodCallDummy; }
Note:
See TracChangeset
for help on using the changeset viewer.