| 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 module = (function () { | 9 var module = (function () { |
| 8 var kFuncWithBody = 9; | 10 var kFuncWithBody = 9; |
| 9 var kFuncImported = 7; | 11 var kFuncImported = 7; |
| 10 var kBodySize1 = 1; | 12 var kBodySize1 = 1; |
| 11 var kMainOffset = 6 + kFuncWithBody + kBodySize1 + 1; | 13 var kMainOffset = 6 + kFuncWithBody + kBodySize1 + 1; |
| 12 | 14 |
| 13 var ffi = new Object(); | 15 var ffi = new Object(); |
| 14 ffi.add = (function(a, b) { return a + b | 0; }); | 16 ffi.add = (function(a, b) { return a + b | 0; }); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 assertEquals("function", typeof module.main); | 39 assertEquals("function", typeof module.main); |
| 38 | 40 |
| 39 var exception = ""; | 41 var exception = ""; |
| 40 try { | 42 try { |
| 41 assertEquals(0, module.main()); | 43 assertEquals(0, module.main()); |
| 42 } catch(e) { | 44 } catch(e) { |
| 43 print("correctly caught: " + e); | 45 print("correctly caught: " + e); |
| 44 exception = e; | 46 exception = e; |
| 45 } | 47 } |
| 46 assertEquals("unreachable", exception); | 48 assertEquals("unreachable", exception); |
| OLD | NEW |