debugger Statement Usage

What pattern is demonstrated in this class implementation?
class Debuggable {\n  constructor() {\n    this.debugMode = false;\n  }\n  enableDebugging() {\n    this.debugMode = true;\n  }\n  method() {\n    if (this.debugMode) {\n      debugger;\n    }\n  }\n}
Next Question (9/20)