Files
kiss-flixel/feedback-server/externs/node/inspector/debugger/Location.hx

20 lines
368 B
Haxe

package node.inspector.debugger;
/**
Location in the source code.
**/
typedef Location = {
/**
Script identifier as reported in the <code>Debugger.scriptParsed</code>.
**/
var scriptId : String;
/**
Line number in the script (0-based).
**/
var lineNumber : Float;
/**
Column number in the script (0-based).
**/
@:optional
var columnNumber : Float;
};