\brief Add an assignment operator Operator entries in byte code consist of: cmASSIGN code the pointer of the destination variable \sa ParserToken::ECmdCode */
| 361 | \sa ParserToken::ECmdCode |
| 362 | */ |
| 363 | void ParserByteCode::AddAssignOp(value_type* a_pVar) |
| 364 | { |
| 365 | --m_iStackPos; |
| 366 | |
| 367 | SToken tok; |
| 368 | tok.Cmd = cmASSIGN; |
| 369 | tok.Oprt.ptr = a_pVar; |
| 370 | m_vRPN.push_back(tok); |
| 371 | } |
| 372 | |
| 373 | |
| 374 | /** \brief Add function to bytecode. |