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/bytecode/UnlinkedCodeBlock.cpp

    r192914 r192935  
    5555    : Base(*vm, structure)
    5656    , m_numVars(0)
    57     , m_numCalleeLocals(0)
     57    , m_numCalleeRegisters(0)
    5858    , m_numParameters(0)
    5959    , m_vm(vm)
     
    6666    , m_isBuiltinFunction(info.isBuiltinFunction())
    6767    , m_constructorKind(static_cast<unsigned>(info.constructorKind()))
    68     , m_generatorThisMode(static_cast<unsigned>(info.generatorThisMode()))
    69     , m_superBinding(static_cast<unsigned>(info.superBinding()))
     68    , m_isArrowFunction(info.isArrowFunction())
    7069    , m_firstLine(0)
    7170    , m_lineCount(0)
    7271    , m_endColumn(UINT_MAX)
    73     , m_parseMode(info.parseMode())
    7472    , m_features(0)
    7573    , m_codeType(codeType)
Note: See TracChangeset for help on using the changeset viewer.