persona-community-5/.pnpm-store/v3/files/ba/3fcb316abebf2ba4dc3372def191fb69c763d7ea6191b21e58627f452aff58f6db693e541d5f63b96bedcf7d97bade981dac7c947316986aad5b39a2e17589
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

8 lines
426 B
Plaintext

/**
* Read an identifier, producing either a name token or matching on one of the existing keywords.
* For performance, we pre-generate big decision tree that we traverse. Each node represents a
* prefix and has 27 values, where the first value is the token or contextual token, if any (-1 if
* not), and the other 26 values are the transitions to other nodes, or -1 to stop.
*/
export default function readWord(): void;