Changeset 154916 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Aug 30, 2013, 3:55:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r154861 r154916 70 70 class RegExpConstructor; 71 71 class RegExpPrototype; 72 class SetPrototype; 72 73 class SourceCode; 73 74 struct ActivationStackNode; … … 153 154 WriteBarrier<JSPromiseResolverPrototype> m_promiseResolverPrototype; 154 155 WriteBarrier<MapPrototype> m_mapPrototype; 156 WriteBarrier<SetPrototype> m_setPrototype; 155 157 156 158 WriteBarrier<Structure> m_withScopeStructure; … … 196 198 WriteBarrier<Structure> m_mapDataStructure; 197 199 WriteBarrier<Structure> m_mapStructure; 200 WriteBarrier<Structure> m_setStructure; 198 201 199 202 WriteBarrier<JSArrayBufferPrototype> m_arrayBufferPrototype; … … 391 394 Structure* regExpMatchesArrayStructure() const { return m_regExpMatchesArrayStructure.get(); } 392 395 Structure* regExpStructure() const { return m_regExpStructure.get(); } 396 Structure* setStructure() const { return m_setStructure.get(); } 393 397 Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); } 394 398
Note:
See TracChangeset
for help on using the changeset viewer.