mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
8219a5c503
Differential Revision: https://phabricator.services.mozilla.com/D177025
7 lines
122 B
JavaScript
7 lines
122 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
postMessage("debugger");
|
|
};
|