Changeset 32687 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
- Timestamp:
- Apr 29, 2008, 7:34:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r32652 r32687 64 64 namespace KJS { 65 65 66 extern HashTable arrayTable;67 extern HashTable dateTable;68 extern HashTable mathTable;69 extern HashTable numberTable;70 extern HashTable RegExpImpTable;71 extern HashTable RegExpObjectImpTable;72 extern HashTable stringTable;66 extern const HashTable arrayTable; 67 extern const HashTable dateTable; 68 extern const HashTable mathTable; 69 extern const HashTable numberTable; 70 extern const HashTable RegExpImpTable; 71 extern const HashTable RegExpObjectImpTable; 72 extern const HashTable stringTable; 73 73 74 74 // Default number of ticks before a timeout check should be done. … … 166 166 HashTable stringTable; 167 167 #else 168 HashTable& arrayTable;169 HashTable& dateTable;170 HashTable& mathTable;171 HashTable& numberTable;172 HashTable& RegExpImpTable;173 HashTable& RegExpObjectImpTable;174 HashTable& stringTable;168 const HashTable& arrayTable; 169 const HashTable& dateTable; 170 const HashTable& mathTable; 171 const HashTable& numberTable; 172 const HashTable& RegExpImpTable; 173 const HashTable& RegExpObjectImpTable; 174 const HashTable& stringTable; 175 175 #endif 176 176 };
Note:
See TracChangeset
for help on using the changeset viewer.