added a new reserved word - thisProcess

This commit is contained in:
hyunghwan.chung
2016-07-05 15:22:29 +00:00
parent a22f5ea0ab
commit 27f00148a1
6 changed files with 37 additions and 9 deletions

View File

@ -3787,6 +3787,11 @@ return -1;
STIX_STACK_PUSH (stix, (stix_oop_t)stix->active_context);
break;
case BCODE_PUSH_PROCESS:
LOG_INST_0 (stix, "push_process");
STIX_STACK_PUSH (stix, (stix_oop_t)stix->processor->active);
break;
case BCODE_PUSH_NEGONE:
LOG_INST_0 (stix, "push_negone");
STIX_STACK_PUSH (stix, STIX_SMOOI_TO_OOP(-1));