Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
* @private {object} V8 Debug API. This can be null if the Node.js version
* is out of date.
*/
this.v8debug_ = null;
/** @private {boolean} */
this.running_ = false;
/** @private {string} */
this.project_ = null;
/** @private {boolean} */
this.fetcherActive_ = false;
/** @private {common.logger} */
this.logger_ = new common.logger({
level: common.logger.LEVELS[this.config_.logLevel],
tag: pjson.name
});
/** @private {DebugletApi} */
this.debugletApi_ = new DebugletApi(this.debug_);
/** @private {Debuggee} */
this.debuggee_ = null;
/** @private {Object.} */
this.activeBreakpointMap_ = {};
/** @private {Object.} */
this.completedBreakpointMap_ = {};
* @private {object} V8 Debug API. This can be null if the Node.js version
* is out of date.
*/
this.v8debug_ = null;
/** @private {boolean} */
this.running_ = false;
/** @private {string} */
this.project_ = null;
/** @private {boolean} */
this.fetcherActive_ = false;
/** @private {common.logger} */
this.logger_ = new common.logger({
level: common.logger.LEVELS[this.config_.logLevel],
tag: pjson.name
});
/** @private {DebugletApi} */
this.debugletApi_ = new DebugletApi(this.debug_);
/** @private {Debuggee} */
this.debuggee_ = null;
/** @private {Object.} */
this.activeBreakpointMap_ = {};
/** @private {Object.} */
this.completedBreakpointMap_ = {};