Ignore runtime configuration files generated during quality assurance.
1 // Debugger.Object.prototype.evalInGlobal sets 'this' to the global.
3 var dbg = new Debugger;
5 var g1w = dbg.addDebuggee(g1);
7 assertEq(g1w.evalInGlobal('this').return, g1w);
8 assertEq(g1w.evalInGlobalWithBindings('this', { x:42 }).return, g1w);