Name the tuple values

This commit is contained in:
Christopher Schleiden
2022-11-23 09:08:03 -08:00
parent 1b6b742351
commit 353f4db674
@@ -5,7 +5,7 @@ import {nullTrace} from "../nulltrace";
import {getPositionFromCursor} from "../test-utils/cursor-position";
import {findToken} from "./find-token";
type testTokenInfo = [string | null, TokenType, string?];
type testTokenInfo = [definitionKey: string | null, tokenType: TokenType, literalValue?: string];
function getTokenInfo(token: TemplateToken | null): testTokenInfo | null {
if (!token) {