Home | History | Annotate | Download | only in embenchen

Lines Matching refs:ExitStatus

550 var EXITSTATUS = 0;
5810 function ExitStatus(status) {
5811 this.name = "ExitStatus";
5815 ExitStatus.prototype = new Error();
5816 ExitStatus.prototype.constructor = ExitStatus;
5864 if (e instanceof ExitStatus) {
5934 EXITSTATUS = status;
5949 throw new ExitStatus(status);
5960 EXITSTATUS = 1;