GodotScript.hpp: Add a TODO

Signed-off-by: Username404-59 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404-59 2025-01-01 01:09:07 +01:00
parent fa874ef0d2
commit 91c1ae0611
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ struct GsTarget: Target {
unordered_task_map getTaskMap() final {
return {
make_task(Define<false>,
output << (parseComponent.final ? "const " : "var ") << parseComponent.name << " = ";
output << (parseComponent.final ? "const " : "var ") << parseComponent.name << " = "; // TODO Handle redefining GodotScript variables
transpileTree(parseComponent.content);
),
make_task(types::String, stringInterpolation(R"(""")", parseComponent.content);),