* Disables or enables all debugger instances. * TODO: Remove the parameter here, and add a disable method as well * @static * @param {boolean} flag * @returns {void}
(flag)
| 201 | * @returns {void} |
| 202 | */ |
| 203 | static enable(flag) { |
| 204 | Debugger.initParams(); |
| 205 | window[Debugger.paramKey].enabled = flag; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Returns the global params key. |
no test coverage detected