| 545 | |
| 546 | bool Append(ExprTokenType &aValue); |
| 547 | bool Append(LPTSTR aValue, size_t aValueLength = -1) { return Append(ExprTokenType(aValue, aValueLength)); } |
| 548 | bool Append(__int64 aValue) { return Append(ExprTokenType(aValue)); } |
| 549 | |
| 550 | Array *Clone(); |
nothing calls this directly
no test coverage detected