Ignore:
Timestamp:
Dec 1, 2015, 5:37:19 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r192914.
https://bugs.webkit.org/show_bug.cgi?id=151734

JSC tests for this change are failing on 32 and 64-bit bots
(Requested by ryanhaddad on #webkit).

Reverted changeset:

"[ES6] Implement LLInt/Baseline Support for ES6 Generators and
enable this feature"
https://bugs.webkit.org/show_bug.cgi?id=150792
http://trac.webkit.org/changeset/192914

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h

    r192914 r192935  
    6464class FunctionExecutable;
    6565class FunctionPrototype;
    66 class GeneratorPrototype;
    67 class GeneratorFunctionPrototype;
    6866class GetterSetter;
    6967class GlobalCodeBlock;
     
    232230    WriteBarrier<RegExpPrototype> m_regExpPrototype;
    233231    WriteBarrier<IteratorPrototype> m_iteratorPrototype;
    234     WriteBarrier<GeneratorFunctionPrototype> m_generatorFunctionPrototype;
    235     WriteBarrier<GeneratorPrototype> m_generatorPrototype;
    236232
    237233    WriteBarrier<Structure> m_debuggerScopeStructure;
     
    267263    WriteBarrier<Structure> m_privateNameStructure;
    268264    WriteBarrier<Structure> m_regExpStructure;
    269     WriteBarrier<Structure> m_generatorFunctionStructure;
    270265    WriteBarrier<Structure> m_consoleStructure;
    271266    WriteBarrier<Structure> m_dollarVMStructure;
     
    459454    ErrorPrototype* errorPrototype() const { return m_errorPrototype.get(); }
    460455    IteratorPrototype* iteratorPrototype() const { return m_iteratorPrototype.get(); }
    461     GeneratorFunctionPrototype* generatorFunctionPrototype() const { return m_generatorFunctionPrototype.get(); }
    462     GeneratorPrototype* generatorPrototype() const { return m_generatorPrototype.get(); }
    463456
    464457    Structure* debuggerScopeStructure() const { return m_debuggerScopeStructure.get(); }
     
    514507    Structure* mapStructure() const { return m_mapStructure.get(); }
    515508    Structure* regExpStructure() const { return m_regExpStructure.get(); }
    516     Structure* generatorFunctionStructure() const { return m_generatorFunctionStructure.get(); }
    517509    Structure* setStructure() const { return m_setStructure.get(); }
    518510    Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); }
Note: See TracChangeset for help on using the changeset viewer.