--- parser3/src/main/execute.C 2001/05/21 10:59:38 1.162 +++ parser3/src/main/execute.C 2001/05/21 16:01:10 1.163 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: execute.C,v 1.162 2001/05/21 10:59:38 parser Exp $ + $Id: execute.C,v 1.163 2001/05/21 16:01:10 parser Exp $ */ #include "pa_opcode.h" @@ -694,14 +694,14 @@ void Request::execute(const Array& ops) Value *Request::get_element() { const String& name=POP_NAME(); Value *ncontext=POP(); - Value *value; + Value *value/*; if(Method* method=OP.get_method(name)) { // operator? // as if that method were in self and we have normal dynamic method here Junction& junction=*NEW Junction(pool(), *self, self->get_class(), method, 0,0,0,0); value=NEW VJunction(junction); } else - value=ncontext->get_element(name); + value*/=ncontext->get_element(name); if(value) value=&process(*value, &name); // process possible code-junction else {