proc_macro
Version:
A JavaScript implementation of proc_macros.
13 lines • 413 B
TypeScript
import Token from './token';
/**
* A non-literal token used to identify object (such as variables, conditions, etc).
*/
export default class Ident extends Token {
readonly value: string;
constructor(value: string);
eq(other: any): boolean;
static tokenize(tokenString: string): [Ident, string];
toParenthesisString(): string;
toJavaScript(): string;
}
//# sourceMappingURL=ident.d.ts.map