sync: wip changes

This commit is contained in:
binekrasik
2026-05-21 13:47:27 +02:00
parent 0577ee49cf
commit e0269c9b6a
7 changed files with 838 additions and 32 deletions

View File

@@ -0,0 +1,13 @@
/**
* Wush input parser
* Provides necessary parsing functions
*/
export class InputParser {
static Tokenize(input: string) {
}
static Parse(tokens: string[]) {
}
}