Changeset 30871 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Mar 7, 2008, 11:46:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r30534 r30871 49 49 class ObjectObjectImp; 50 50 class ObjectPrototype; 51 class PrototypeReflexiveFunction; 51 52 class RangeError; 52 53 class RangeErrorPrototype; … … 110 111 NativeErrorImp* URIErrorConstructor; 111 112 113 PrototypeReflexiveFunction* evalFunction; 114 112 115 ObjectPrototype* objectPrototype; 113 116 FunctionPrototype* functionPrototype; … … 125 128 NativeErrorPrototype* typeErrorPrototype; 126 129 NativeErrorPrototype* URIErrorPrototype; 127 130 128 131 SymbolTable inlineSymbolTable; 129 132 … … 182 185 NativeErrorImp* URIErrorConstructor() const { return d()->URIErrorConstructor; } 183 186 187 PrototypeReflexiveFunction* evalFunction() const { return d()->evalFunction; } 188 184 189 ObjectPrototype* objectPrototype() const { return d()->objectPrototype; } 185 190 FunctionPrototype* functionPrototype() const { return d()->functionPrototype; }
Note:
See TracChangeset
for help on using the changeset viewer.