Containers

- Added a TODO
This commit is contained in:
Tristan B. Velloza Kildaire 2024-03-18 15:28:48 +02:00
parent 48f078077b
commit 7a2ea96140
1 changed files with 3 additions and 0 deletions

View File

@ -89,6 +89,7 @@ public class Module : Entity, Container
public Statement[] getStatements()
{
// TODO: Holy naai this is expensive
return weightReorder(statements);
}
@ -189,6 +190,7 @@ public class Struct : Type, Container, MCloneable
public Statement[] getStatements()
{
// TODO: Holy naai this is expensive
return weightReorder(statements);
}
@ -354,6 +356,7 @@ public class Clazz : Type, Container
public Statement[] getStatements()
{
// TODO: Holy naai this is expensive
return weightReorder(statements);
}