OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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: --expose-wasm |
6 | 6 |
7 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
8 | 8 |
9 function testStack(func, check) { | 9 function testStack(func, check) { |
10 var kBodySize = 2; | 10 var kBodySize = 2; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 stack = e.stack; | 55 stack = e.stack; |
56 } | 56 } |
57 | 57 |
58 function check_STACK() { | 58 function check_STACK() { |
59 assertEquals(expected, stripPath(stack)); | 59 assertEquals(expected, stripPath(stack)); |
60 } | 60 } |
61 | 61 |
62 var expected = "Error\n" + | 62 var expected = "Error\n" + |
63 // The line numbers below will change as this test gains / loses lines.. | 63 // The line numbers below will change as this test gains / loses lines.. |
64 " at STACK (stack.js:54:11)\n" + // -- | 64 " at STACK (stack.js:54:11)\n" + // -- |
65 " at <WASM> (<anonymous>)\n" + // -- | |
66 " at <WASM> (<anonymous>)\n" + // -- | |
67 " at <WASM> (<anonymous>)\n" + // -- | |
68 " at testStack (stack.js:43:10)\n" + | 65 " at testStack (stack.js:43:10)\n" + |
69 // TODO(jfb) Add WebAssembly stack here. | 66 // TODO(jfb) Add WebAssembly stack here. |
70 " at stack.js:72:1"; | 67 " at stack.js:69:1"; |
71 | 68 |
72 testStack(STACK, check_STACK); | 69 testStack(STACK, check_STACK); |
OLD | NEW |