Ignore runtime configuration files generated during quality assurance.
1 // Test that we can save stacks with proxy handler frames.
3 const stack = (function iife() {
4 return (new Proxy({}, {
5 get: function get(t, n, r) { return saveStack(); }
9 assertEq(stack.functionDisplayName, "get");
10 assertEq(stack.parent.functionDisplayName, "iife");