Changeset 38440 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.h
- Timestamp:
- Nov 15, 2008, 8:40:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.h
r38423 r38440 51 51 class Parser; 52 52 class ParserRefCounted; 53 class Structure ID;53 class Structure; 54 54 class UString; 55 55 struct HashTable; … … 79 79 const HashTable* stringTable; 80 80 81 RefPtr<Structure ID> activationStructureID;82 RefPtr<Structure ID> interruptedExecutionErrorStructure;83 RefPtr<Structure ID> staticScopeStructureID;84 RefPtr<Structure ID> stringStructureID;85 RefPtr<Structure ID> notAnObjectErrorStubStructure;86 RefPtr<Structure ID> notAnObjectStructure;87 RefPtr<Structure ID> numberStructureID;81 RefPtr<Structure> activationStructure; 82 RefPtr<Structure> interruptedExecutionErrorStructure; 83 RefPtr<Structure> staticScopeStructure; 84 RefPtr<Structure> stringStructure; 85 RefPtr<Structure> notAnObjectErrorStubStructure; 86 RefPtr<Structure> notAnObjectStructure; 87 RefPtr<Structure> numberStructure; 88 88 89 89 IdentifierTable* identifierTable;
Note:
See TracChangeset
for help on using the changeset viewer.