10 lines
307 B
Haxe
10 lines
307 B
Haxe
package node.repl;
|
|
|
|
/**
|
|
Indicates a recoverable error that a `REPLServer` can use to support multi-line input.
|
|
**/
|
|
@:jsRequire("repl", "Recoverable") extern class Recoverable extends js.lib.Error.SyntaxError {
|
|
function new(err:js.lib.Error);
|
|
var err : js.lib.Error;
|
|
static var prototype : Recoverable;
|
|
} |