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 |
| 6 |
5 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
6 | 8 |
7 var kReturnValue = 117; | 9 var kReturnValue = 117; |
8 | 10 |
9 var kBodySize = 2; | 11 var kBodySize = 2; |
10 var kNameOffset = 19 + kBodySize + 1; | 12 var kNameOffset = 19 + kBodySize + 1; |
11 | 13 |
12 var data = bytes( | 14 var data = bytes( |
13 // -- memory | 15 // -- memory |
14 kDeclMemory, | 16 kDeclMemory, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 53 |
52 assertEquals(1024, module.memory.byteLength); | 54 assertEquals(1024, module.memory.byteLength); |
53 | 55 |
54 // Check the properties of the main function. | 56 // Check the properties of the main function. |
55 assertFalse(module.main === undefined); | 57 assertFalse(module.main === undefined); |
56 assertFalse(module.main === null); | 58 assertFalse(module.main === null); |
57 assertFalse(module.main === 0); | 59 assertFalse(module.main === 0); |
58 assertEquals("function", typeof module.main); | 60 assertEquals("function", typeof module.main); |
59 | 61 |
60 assertEquals(kReturnValue, module.main()); | 62 assertEquals(kReturnValue, module.main()); |
OLD | NEW |