UNPKG

@sudoo/marked

Version:

JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous

16 lines (15 loc) 626 B
/** * @author WMXPY * @namespace Debug_BreakPoint * @description Line */ import * as EST from "estree"; import { ScriptLocation } from "../../declare/script-location"; import { MarkedDebugBreakPoint } from "./break-point"; export declare class MarkedDebugLineBreakPoint extends MarkedDebugBreakPoint { static fromLineNumber(lineNumber: number, scriptLocation?: ScriptLocation): MarkedDebugLineBreakPoint; private readonly _lineNumber; private constructor(); shouldTrigger(scriptLocation: ScriptLocation, node: EST.Node): boolean; shouldReset(scriptLocation: ScriptLocation, node: EST.Node): boolean; }