[2.x] fix: Fix subproject evaluation order (#8672)

**Problem**
Subproject definition is ordered bottom-to-top.

**Solution**
Fixes the definition to be top-to-bottom.
This commit is contained in:
eugene yokota 2026-02-01 02:33:11 -05:00 committed by GitHub
parent 4430d4c553
commit afc9a90374
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class Eval(
inter.loader,
inter.generated,
inter.enclosingModule,
inter.extra.reverse.distinct
inter.extra.distinct.reverse,
)
end evalDefinitions