* Initialize the tempStacks vector object. * The tempStacks is a vector of pointers to strings allocated with the 'new' operator. * Any residual entries are deleted before the vector is initialized. */
| 1467 | * Any residual entries are deleted before the vector is initialized. |
| 1468 | */ |
| 1469 | void ASBeautifier::initTempStacksContainer(vector<vector<const string*>*>* &container, |
| 1470 | vector<vector<const string*>*>* value) |
| 1471 | { |
| 1472 | if (container != NULL) |
| 1473 | deleteTempStacksContainer(container); |
| 1474 | container = value; |
| 1475 | } |
| 1476 | |
| 1477 | /** |
| 1478 | * Determine if an assignment statement ends with a comma |
nothing calls this directly
no outgoing calls
no test coverage detected