michael@0: // Test that stringify'ing a saved frame with self-hosted parent frames doesn't michael@0: // include the self-hosted parent frame in the output. michael@0: michael@0: const map = (function () { michael@0: return [3].map(n => saveStack()).pop(); michael@0: }()); michael@0: michael@0: assertEq(map.toString().contains("@self-hosted:"), false);