UNPKG

trepan-ni

Version:

Trepan debugger for Node Inspect (and based on node inspect debugger)

23 lines (18 loc) 445 B
// Copyright 2018 Rocky Bernstein 'use strict'; /*================================= Debugger 'clearBreakpoint' command ===================================*/ exports.Init = function(intf, repl) { intf.defineCommand('clearBreakpoint', repl, { paused: false, help: `Remove a breakpoint by location. Usage: clear *url* *line* See also: -------- delete, break `, aliases: ['cb', 'clear'], run: intf.clearBreakpoint }); };