comparison: js/src/jit-test/tests/saved-stacks/stringify-with-self-hosted.js
js/src/jit-test/tests/saved-stacks/stringify-with-self-hosted.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 // Test that stringify'ing a saved frame with self-hosted parent frames doesn't |
|
2 // include the self-hosted parent frame in the output. |
|
3 |
|
4 const map = (function () { |
|
5 return [3].map(n => saveStack()).pop(); |
|
6 }()); |
|
7 |
|
8 assertEq(map.toString().contains("@self-hosted:"), false); |