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/parser/Nodes.h

    r192914 r192935  
    18181818            unsigned startColumn, unsigned endColumn, int functionKeywordStart,
    18191819            int functionNameStart, int parametersStart, bool isInStrictContext,
    1820             ConstructorKind, SuperBinding, unsigned, SourceParseMode, bool isArrowFunctionBodyExpression);
     1820            ConstructorKind, unsigned, SourceParseMode, bool isArrowFunction, bool isArrowFunctionBodyExpression);
    18211821
    18221822        void finishParsing(const SourceCode&, const Identifier&, FunctionMode);
     
    18431843        int startStartOffset() const { return m_startStartOffset; }
    18441844        bool isInStrictContext() const { return m_isInStrictContext; }
    1845         SuperBinding superBinding() { return static_cast<SuperBinding>(m_superBinding); }
    18461845        ConstructorKind constructorKind() { return static_cast<ConstructorKind>(m_constructorKind); }
     1846        bool isArrowFunction() const { return m_isArrowFunction; }
    18471847        bool isArrowFunctionBodyExpression() const { return m_isArrowFunctionBodyExpression; }
    18481848
     
    18701870        SourceParseMode m_parseMode;
    18711871        unsigned m_isInStrictContext : 1;
    1872         unsigned m_superBinding : 1;
    18731872        unsigned m_constructorKind : 2;
     1873        unsigned m_isArrowFunction : 1;
    18741874        unsigned m_isArrowFunctionBodyExpression : 1;
    18751875    };
     
    19331933    };
    19341934
    1935     class YieldExprNode final : public ExpressionNode, public ThrowableExpressionData {
     1935    class YieldExprNode final : public ExpressionNode {
    19361936    public:
    19371937        YieldExprNode(const JSTokenLocation&, ExpressionNode* argument, bool delegate);
Note: See TracChangeset for help on using the changeset viewer.