478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
|
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
-
|
* following code transfers our use of the reference again to
* the script object. */
script_obj_ptr.freeIntRep();
script_obj_ptr.obj_type = stmt.interp.script_obj_type;
script_obj_ptr.setIntRepPtr(script);
script_obj_ptr.decrRefCount();
//print("retcode!"+stmt.interp.getResultString(retcode)+"!");
return retcode;
},
/* ==================== addErrorToStack ===================================== */
addErrorToStack: function(retcode, file_name_obj, line) {
var stmt = this;
var rc = retcode;
|