2015-12-11 12:26:16 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-12-17 10:54:08 +00:00
|
|
|
// Flags: --expose-wasm
|
|
|
|
|
2016-01-12 20:16:21 +00:00
|
|
|
assertFalse(undefined === _WASMEXP_);
|
|
|
|
assertFalse(undefined == _WASMEXP_);
|
|
|
|
assertEquals("function", typeof _WASMEXP_.verifyModule);
|
|
|
|
assertEquals("function", typeof _WASMEXP_.verifyFunction);
|
2016-02-03 10:15:50 +00:00
|
|
|
assertEquals("function", typeof _WASMEXP_.instantiateModule);
|
|
|
|
assertEquals("function", typeof _WASMEXP_.instantiateModuleFromAsm);
|