Ignore:
Timestamp:
Jul 28, 2015, 8:27:23 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r187531.
https://bugs.webkit.org/show_bug.cgi?id=147397

Broke Windows bild (Requested by smfr on #webkit).

Reverted changeset:

"Implement WebAssembly module parser"
https://bugs.webkit.org/show_bug.cgi?id=147293
http://trac.webkit.org/changeset/187531

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp

    r187531 r187538  
    9393#include "JSTypedArrayPrototypes.h"
    9494#include "JSTypedArrays.h"
    95 #include "JSWASMModule.h"
    9695#include "JSWeakMap.h"
    9796#include "JSWeakSet.h"
     
    342341    m_promiseStructure.set(vm, this, JSPromise::createStructure(vm, this, m_promisePrototype.get()));
    343342
    344 #if ENABLE(WEBASSEMBLY)
    345     m_wasmModuleStructure.set(vm, this, JSWASMModule::createStructure(vm, this));
    346 #endif
    347 
    348343    m_parseIntFunction.set(vm, this, JSFunction::create(vm, this, 2, vm.propertyNames->parseInt.string(), globalFuncParseInt, NoIntrinsic));
    349344    putDirectWithoutTransition(vm, vm.propertyNames->parseInt, m_parseIntFunction.get(), DontEnum | Function);
     
    807802    visitor.append(&thisObject->m_internalFunctionStructure);
    808803    visitor.append(&thisObject->m_promiseStructure);
    809 #if ENABLE(WEBASSEMBLY)
    810     visitor.append(&thisObject->m_wasmModuleStructure);
    811 #endif
    812804
    813805#define VISIT_SIMPLE_TYPE(CapitalName, lowerName, properName, instanceType, jsName) \
Note: See TracChangeset for help on using the changeset viewer.