Tokenizer is now done, we also have the new InternalizeID and ExternalizeID

This commit is contained in:
2026-03-28 19:29:15 -04:00
parent 5aef356199
commit 88fa260c9d
10 changed files with 4883 additions and 0 deletions

View File

@@ -65,6 +65,9 @@ FString WingUtils::SanitizeName(const FString &InName)
if (c == ' ') c=L'·';
if (c == '<') c=L'';
if (c == '>') c=L'';
if (c == '(') c=L'';
if (c == ')') c=L'';
if (c == '=') c=L'';
if (c == ',') c=L'';
Name[Dst++] = c;
}
@@ -84,6 +87,9 @@ FString WingUtils::UnsanitizeName(const FString &InName)
if (c == L'·') c=' ';
if (c == L'') c='<';
if (c == L'') c='>';
if (c == L'') c='(';
if (c == L'') c=')';
if (c == L'') c='=';
if (c == L'') c=',';
Name[Dst++] = c;
}