Ignore:
Timestamp:
Dec 1, 2015, 5:37:19 PM (9 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/parser/Nodes.cpp

    r192914 r192935  
    152152    const JSTokenLocation& endLocation, unsigned startColumn, unsigned endColumn,
    153153    int functionKeywordStart, int functionNameStart, int parametersStart, bool isInStrictContext,
    154     ConstructorKind constructorKind, SuperBinding superBinding, unsigned parameterCount, SourceParseMode mode, bool isArrowFunctionBodyExpression)
     154    ConstructorKind constructorKind, unsigned parameterCount, SourceParseMode mode, bool isArrowFunction, bool isArrowFunctionBodyExpression)
    155155        : Node(endLocation)
    156156        , m_startColumn(startColumn)
     
    163163        , m_parseMode(mode)
    164164        , m_isInStrictContext(isInStrictContext)
    165         , m_superBinding(static_cast<unsigned>(superBinding))
    166165        , m_constructorKind(static_cast<unsigned>(constructorKind))
     166        , m_isArrowFunction(isArrowFunction)
    167167        , m_isArrowFunctionBodyExpression(isArrowFunctionBodyExpression)
    168168{
    169     ASSERT(m_superBinding == static_cast<unsigned>(superBinding));
    170169    ASSERT(m_constructorKind == static_cast<unsigned>(constructorKind));
    171170}
Note: See TracChangeset for help on using the changeset viewer.