math-mcp
Version:
MCP server for mathematical expression evaluation with strict grammar validation
19 lines • 463 B
TypeScript
import { Token } from './types.js';
export declare class Tokenizer {
private input;
private position;
private line;
private column;
constructor(input: string);
tokenize(): Token[];
private nextToken;
private readNumber;
private readIdentifier;
private readString;
private readOperator;
private getKeywordType;
private isDigit;
private isLetter;
private advance;
}
//# sourceMappingURL=tokenizer.d.ts.map