Changeset 192935 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r192914 r192935 64 64 class FunctionExecutable; 65 65 class FunctionPrototype; 66 class GeneratorPrototype;67 class GeneratorFunctionPrototype;68 66 class GetterSetter; 69 67 class GlobalCodeBlock; … … 232 230 WriteBarrier<RegExpPrototype> m_regExpPrototype; 233 231 WriteBarrier<IteratorPrototype> m_iteratorPrototype; 234 WriteBarrier<GeneratorFunctionPrototype> m_generatorFunctionPrototype;235 WriteBarrier<GeneratorPrototype> m_generatorPrototype;236 232 237 233 WriteBarrier<Structure> m_debuggerScopeStructure; … … 267 263 WriteBarrier<Structure> m_privateNameStructure; 268 264 WriteBarrier<Structure> m_regExpStructure; 269 WriteBarrier<Structure> m_generatorFunctionStructure;270 265 WriteBarrier<Structure> m_consoleStructure; 271 266 WriteBarrier<Structure> m_dollarVMStructure; … … 459 454 ErrorPrototype* errorPrototype() const { return m_errorPrototype.get(); } 460 455 IteratorPrototype* iteratorPrototype() const { return m_iteratorPrototype.get(); } 461 GeneratorFunctionPrototype* generatorFunctionPrototype() const { return m_generatorFunctionPrototype.get(); }462 GeneratorPrototype* generatorPrototype() const { return m_generatorPrototype.get(); }463 456 464 457 Structure* debuggerScopeStructure() const { return m_debuggerScopeStructure.get(); } … … 514 507 Structure* mapStructure() const { return m_mapStructure.get(); } 515 508 Structure* regExpStructure() const { return m_regExpStructure.get(); } 516 Structure* generatorFunctionStructure() const { return m_generatorFunctionStructure.get(); }517 509 Structure* setStructure() const { return m_setStructure.get(); } 518 510 Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); }
Note:
See TracChangeset
for help on using the changeset viewer.