Merge branch 'vardec_varass_dependency' into modules

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-13 11:36:47 +02:00
commit 2e4993c6f5
1 changed files with 3 additions and 3 deletions

View File

@ -303,7 +303,7 @@ public final class Resolver
return entityWithin;
}
/* If `name` was NOT found within container `c` or above it */
else
else
{
return null;
}
@ -323,7 +323,7 @@ public final class Resolver
return entityNext;
}
/* Go deeper */
else
else
{
string newPath = name[indexOf(name, '.') + 1 .. name.length];
Entity entityNext = resolveWithin(c, path[1]);
@ -352,7 +352,7 @@ public final class Resolver
}
}
/* We need to search higher */
else
else
{
/* TODO: Bug is we will never find top container */
/* Check if the name of root is that of Module */