UNPKG

226 BTypeScriptView Raw
1import type { Token } from "../parser/tokenizer";
2/**
3 * Get all identifier names in the code, in order, including duplicates.
4 */
5export default function getIdentifierNames(code: string, tokens: Array<Token>): Array<string>;