mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
7 lines
122 B
JavaScript
7 lines
122 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
postMessage("debugger");
|
|
};
|