Ignore:
Timestamp:
Apr 17, 2018, 5:05:07 PM (7 years ago)
Author:
Matt Lewis
Message:

Unreviewed, rolling out r230697, r230720, and r230724.
https://bugs.webkit.org/show_bug.cgi?id=184717

These caused multiple failures on the Test262 testers.
(Requested by mlewis13 on #webkit).

Reverted changesets:

"[WebAssembly][Modules] Prototype wasm import"
https://bugs.webkit.org/show_bug.cgi?id=184600
https://trac.webkit.org/changeset/230697

"[WebAssembly][Modules] Implement function import from wasm
modules"
https://bugs.webkit.org/show_bug.cgi?id=184689
https://trac.webkit.org/changeset/230720

"[JSC] Rename runWebAssembly to runWebAssemblySuite"
https://bugs.webkit.org/show_bug.cgi?id=184703
https://trac.webkit.org/changeset/230724

Patch by Commit Queue <[email protected]> on 2018-04-17

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/parser/NodesAnalyzeModule.cpp

    r230720 r230741  
    5353    for (auto* specifier : m_specifierList->specifiers()) {
    5454        analyzer.moduleRecord()->addImportEntry(JSModuleRecord::ImportEntry {
    55             specifier->importedName() == analyzer.vm().propertyNames->timesIdentifier
    56                 ? JSModuleRecord::ImportEntryType::Namespace : JSModuleRecord::ImportEntryType::Single,
    5755            m_moduleName->moduleName(),
    5856            specifier->importedName(),
    59             specifier->localName(),
     57            specifier->localName()
    6058        });
    6159    }
Note: See TracChangeset for help on using the changeset viewer.