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