--- parser3/src/main/compile_tools.C 2001/02/21 06:21:19 1.3 +++ parser3/src/main/compile_tools.C 2001/02/22 13:58:43 1.9 @@ -1,42 +1,41 @@ /* - $Id: compile_tools.C,v 1.3 2001/02/21 06:21:19 paf Exp $ + $Id: compile_tools.C,v 1.9 2001/02/22 13:58:43 paf Exp $ */ #include "compile_tools.h" #include "pa_string.h" #include "pa_array.h" #include "pa_exception.h" +#include "pa_vstring.h" -Array *L(String *string) { +Array *L(VString *vstring) { // empty ops array - Array *result=N(&string->pool()); + Array *result=N(vstring->pool()); // append OP_STRING Operation op; op.code=OP_STRING; - *result+=reinterpret_cast(op.cast); + *result+=op.cast; - // append 'string' - *result+=string; + // append 'vstring' + *result+=vstring; return result; } -const String *LA2S(Array *literal_string_array) { - return static_cast(literal_string_array->get(1)); +String *LA2S(Array *literal_string_array, int offset) { + return static_cast(literal_string_array->get(offset+1))->get_string(); } -void push_LS(struct parse_control *pc) { +void push_LS(struct parse_control *pc, lexical_state new_state) { if(pc->spstack[pc->sp++]=pc->ls; pc->ls=LS_VAR_NAME_SIMPLE; + pc->stack[pc->sp++]=pc->ls; pc->ls=new_state; } else - (static_cast(pc->pool))->exception().raise(0, 0, 0, - "push_LS: stack overflow"); + pc->pool->THROW(0, 0, 0, "push_LS: stack overflow"); } void pop_LS(struct parse_control *pc) { if(--pc->sp>=0) pc->ls=pc->stack[pc->sp]; else - (static_cast(pc->pool))->exception().raise(0, 0, 0, - "push_LS: stack underflow"); + pc->pool->THROW(0, 0, 0, "push_LS: stack underflow"); }