------------------------------------------------------------------------------
| 1217 | |
| 1218 | //------------------------------------------------------------------------------ |
| 1219 | int vtkFunctionParser::BuildInternalFunctionStructure() |
| 1220 | { |
| 1221 | this->ByteCode.clear(); |
| 1222 | |
| 1223 | delete[] this->Immediates; |
| 1224 | this->Immediates = nullptr; |
| 1225 | |
| 1226 | delete[] this->Stack; |
| 1227 | this->Stack = nullptr; |
| 1228 | |
| 1229 | this->ByteCodeSize = this->ImmediatesSize = this->StackSize = 0; |
| 1230 | this->StackPointer = 0; |
| 1231 | this->BuildInternalSubstringStructure(0, this->FunctionLength - 1); |
| 1232 | |
| 1233 | return 1; |
| 1234 | } |
| 1235 | |
| 1236 | //------------------------------------------------------------------------------ |
| 1237 | void vtkFunctionParser::BuildInternalSubstringStructure(int beginIndex, int endIndex) |
no test coverage detected