Home | History | Annotate | Download | only in embenchen

Lines Matching refs:ExitStatus

550 var EXITSTATUS = 0;
5802 function ExitStatus(status) {
5803 this.name = "ExitStatus";
5807 ExitStatus.prototype = new Error();
5808 ExitStatus.prototype.constructor = ExitStatus;
5856 if (e instanceof ExitStatus) {
5926 EXITSTATUS = status;
5941 throw new ExitStatus(status);
5952 EXITSTATUS = 1;