21 lines
480 B
Haxe
21 lines
480 B
Haxe
package node.vm;
|
|
|
|
typedef BaseOptions = {
|
|
/**
|
|
Specifies the filename used in stack traces produced by this script.
|
|
Default: `''`.
|
|
**/
|
|
@:optional
|
|
var filename : String;
|
|
/**
|
|
Specifies the line number offset that is displayed in stack traces produced by this script.
|
|
Default: `0`.
|
|
**/
|
|
@:optional
|
|
var lineOffset : Float;
|
|
/**
|
|
Specifies the column number offset that is displayed in stack traces produced by this script.
|
|
**/
|
|
@:optional
|
|
var columnOffset : Float;
|
|
}; |