OLD | NEW |
---|---|
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --expose-wasm | 5 // Flags: --allow-natives-syntax |
6 | 6 |
7 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
8 load("test/mjsunit/wasm/wasm-module-builder.js"); | 8 load("test/mjsunit/wasm/wasm-module-builder.js"); |
9 | 9 |
10 (function BasicTest() { | 10 const kReturnValue = 15; |
11 var kReturnValue = 15; | 11 |
12 function getBuilder() { | |
12 var builder = new WasmModuleBuilder(); | 13 var builder = new WasmModuleBuilder(); |
13 | 14 |
14 builder.addFunction("main", kSig_i_i) | 15 builder.addFunction("main", kSig_i_i) |
15 .addBody([kExprI32Const, kReturnValue]) | 16 .addBody([kExprI32Const, kReturnValue]) |
16 .exportFunc(); | 17 .exportFunc(); |
18 return builder; | |
19 } | |
17 | 20 |
21 (function BasicTest() { | |
22 var builder = getBuilder(); | |
18 var main = builder.instantiate().exports.main; | 23 var main = builder.instantiate().exports.main; |
19 assertEquals(kReturnValue, main()); | 24 assertEquals(kReturnValue, main()); |
20 })(); | 25 })(); |
26 | |
27 (function AsyncTest() { | |
28 var builder = getBuilder(); | |
29 var buffer = builder.toBuffer(); | |
30 assertPromiseResult(WebAssembly.instantiate(buffer) | |
31 .then(pair => pair.instance.exports.main(), assertUnreachab le) | |
bradnelson
2017/04/11 23:18:41
>80
| |
32 .then(result => assertEquals(kReturnValue, result), assertU nreachable)); | |
33 })(); | |
OLD | NEW |