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/Executable.cpp

    r192914 r192935  
    300300        executable->m_unlinkedExecutable->unlinkedCodeBlockFor(
    301301            *vm, executable->m_source, kind, debuggerMode, profilerMode, error,
    302             executable->parseMode());
     302            executable->isArrowFunction());
    303303    recordParse(
    304304        executable->m_unlinkedExecutable->features(),
     
    557557    std::unique_ptr<ProgramNode> programNode = parse<ProgramNode>(
    558558        vm, m_source, Identifier(), JSParserBuiltinMode::NotBuiltin,
    559         JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, SuperBinding::NotNeeded, error);
     559        JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, error);
    560560    if (programNode)
    561561        return 0;
Note: See TracChangeset for help on using the changeset viewer.