public static inflateArr(tokens: Uint32Array): TestLineToken[] {
const result: TestLineToken[] = new Array<TestLineToken>(tokensCount);
for (let i = 0; i < tokensCount; i++) {
const endOffset = tokens[i << 1];
const metadata = tokens[(i << 1) + 1];
result[i] = new TestLineToken(endOffset, metadata);
}
return result;
}
}