Changeset 155219 in webkit for trunk/Source/JavaScriptCore/runtime/VM.h
- Timestamp:
- Sep 6, 2013, 3:32:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.h
r155023 r155219 223 223 Watchdog watchdog; 224 224 225 const HashTable*arrayConstructorTable;226 const HashTable*arrayPrototypeTable;227 const HashTable*booleanPrototypeTable;228 const HashTable*dataViewTable;229 const HashTable*dateTable;230 const HashTable*dateConstructorTable;231 const HashTable*errorPrototypeTable;232 const HashTable*globalObjectTable;233 const HashTable*jsonTable;234 const HashTable*numberConstructorTable;235 const HashTable*numberPrototypeTable;236 const HashTable*objectConstructorTable;237 const HashTable*privateNamePrototypeTable;238 const HashTable*regExpTable;239 const HashTable*regExpConstructorTable;240 const HashTable*regExpPrototypeTable;241 const HashTable*stringConstructorTable;225 const OwnPtr<const HashTable> arrayConstructorTable; 226 const OwnPtr<const HashTable> arrayPrototypeTable; 227 const OwnPtr<const HashTable> booleanPrototypeTable; 228 const OwnPtr<const HashTable> dataViewTable; 229 const OwnPtr<const HashTable> dateTable; 230 const OwnPtr<const HashTable> dateConstructorTable; 231 const OwnPtr<const HashTable> errorPrototypeTable; 232 const OwnPtr<const HashTable> globalObjectTable; 233 const OwnPtr<const HashTable> jsonTable; 234 const OwnPtr<const HashTable> numberConstructorTable; 235 const OwnPtr<const HashTable> numberPrototypeTable; 236 const OwnPtr<const HashTable> objectConstructorTable; 237 const OwnPtr<const HashTable> privateNamePrototypeTable; 238 const OwnPtr<const HashTable> regExpTable; 239 const OwnPtr<const HashTable> regExpConstructorTable; 240 const OwnPtr<const HashTable> regExpPrototypeTable; 241 const OwnPtr<const HashTable> stringConstructorTable; 242 242 #if ENABLE(PROMISES) 243 const HashTable*promisePrototypeTable;244 const HashTable*promiseConstructorTable;245 const HashTable*promiseResolverPrototypeTable;243 const OwnPtr<const HashTable> promisePrototypeTable; 244 const OwnPtr<const HashTable> promiseConstructorTable; 245 const OwnPtr<const HashTable> promiseResolverPrototypeTable; 246 246 #endif 247 247
Note:
See TracChangeset
for help on using the changeset viewer.