| OLD | NEW |
| 1 Tests imports in wasm |
| 1 Installing code and global variable. | 2 Installing code and global variable. |
| 2 Calling instantiate function for module A. | 3 Calling instantiate function for module A. |
| 3 Waiting for wasm script to be parsed. | 4 Waiting for wasm script to be parsed. |
| 4 Got wasm script! | 5 Got wasm script! |
| 5 Setting breakpoint in line 1: | 6 Setting breakpoint in line 1: |
| 6 func $func | 7 func $func |
| 7 #nop | 8 #nop |
| 8 end | 9 end |
| 9 | 10 |
| 10 Calling instantiate function for module B. | 11 Calling instantiate function for module B. |
| 11 Calling main function on module B. | 12 Calling main function on module B. |
| 12 Paused at 1:2. | 13 Paused at 1:2. |
| 13 func $func | 14 func $func |
| 14 #nop | 15 #nop |
| 15 end | 16 end |
| 16 | 17 |
| 17 Getting current stack trace via "new Error().stack". | 18 Getting current stack trace via "new Error().stack". |
| 18 Error | 19 Error |
| 19 at v8://test/getStack:1:1 | 20 at v8://test/getStack:1:1 |
| 20 at func (<WASM>[0]+1) | 21 at func (<WASM>[0]+1) |
| 21 at main (<WASM>[1]+1) | 22 at main (<WASM>[1]+1) |
| 22 at v8://test/runWasm:1:22 | 23 at v8://test/runWasm:1:22 |
| 23 exports.main returned. | 24 exports.main returned. |
| 24 Finished. | 25 Finished. |
| OLD | NEW |