persona-community-5/.pnpm-store/v3/files/32/32723cbd0d7a6159eccda5d81323b653653b0249cff90d93db0c3125e90e07e6c9dbb804efa2d853ba973e687988d1c4d7617823096c9d0ca9140d34849380
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

6 lines
226 B
Plaintext

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