Home | History | Annotate | Download | only in embenchen

Lines Matching refs:ExitStatus

551 var EXITSTATUS = 0;
1465 if (e instanceof ExitStatus) {
20148 function ExitStatus(status) {
20149 this.name = "ExitStatus";
20153 ExitStatus.prototype = new Error();
20154 ExitStatus.prototype.constructor = ExitStatus;
20202 if (e instanceof ExitStatus) {
20272 EXITSTATUS = status;
20287 throw new ExitStatus(status);
20298 EXITSTATUS = 1;