/js/src/jit-test/tests/debug/Debugger-debuggees-10.js
http://github.com/zpao/v8monkey · JavaScript · 18 lines · 14 code · 2 blank · 2 comment · 0 complexity · bd279790f5cc8d31af9735932d30c22b MD5 · raw file
- // Allow diamonds in the graph of the compartment "debugs" relation.
- var program = newGlobal('new-compartment');
- var d1 = newGlobal('new-compartment');
- d1.top = this;
- var d2 = newGlobal('new-compartment');
- d2.top = this;
- var dbg = new Debugger(d1, d2);
- d1.eval("var dbg = new Debugger(top.program)");
- d2.eval("var dbg = new Debugger(top.program)");
- // mess with the edges a little bit -- all this should be fine, no cycles
- d1.dbg.removeDebuggee(program);
- d1.dbg.addDebuggee(program);
- dbg.addDebuggee(program);
- d1.dbg.addDebuggee(d2);
- dbg.removeDebuggee(d2);
- dbg.addDebuggee(d2);