UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 364 B
/** * Read C99 style IDENTIFIER token * @param {string} text * @param {number} cursor * @param {number} length * @returns {Token} */ export function readIdentifierToken(text: string, cursor: number, length: number): Token; /** * @readonly * @type {RegExp} */ export const RX_IDENTIFIER_FIRST_CHAR: RegExp; //# sourceMappingURL=readIdentifierToken.d.ts.map