Remove OnItteration due to bugs in multithreaded registering in tytd

This commit is contained in:
2025-10-14 23:20:15 -05:00
parent 7c9ef2895c
commit 34ae7c8db3
4 changed files with 22 additions and 103 deletions

View File

@@ -863,7 +863,7 @@ namespace Tesses::CrossLang
EnsureSymbol("]");
continue;
}
if(tokens[i].type != LexTokenType::Identifier) throw std::exception();
if(tokens[i].type != LexTokenType::Identifier) throw std::runtime_error("Not an identifier (member)");
std::string name = tokens[i].text;
if(name == "operator")
{