menu page queries

This commit is contained in:
MihailRis
2024-05-05 22:40:24 +03:00
parent 7f8a86b740
commit 4dc2c4701d
8 changed files with 55 additions and 11 deletions
+8
View File
@@ -164,6 +164,14 @@ char BasicParser::peek() {
return source[pos];
}
std::string BasicParser::readUntil(char c) {
int start = pos;
while (hasNext() && source[pos] != c) {
pos++;
}
return source.substr(start, pos-start);
}
std::string BasicParser::parseName() {
char c = peek();
if (!is_identifier_start(c)) {