startTable method
Start a new table. Must be finished with endTable invocation.
Implementation
void startTable(int numFields) {
assert(!_inVTable); // Inline tables are not supported.
_currentVTable = _VTable(numFields);
_currentTableEndTail = _tail;
}