Feedback
Module methods can now call one another without qualification
- Status
- Fixed
- Fixed in
- v26.8.1
- Source discussion
- https://forum.objo.dev/d/726-module-method-namespacescope
- Last updated
- 2026-08-04
Upvotes
0 upvotes
Uses your Objo forum account.
Public summary
A method declared in a Module cannot reliably call another method in the same Module by its short name. Calls such as Serialize(value) can be reported as undefined, forcing users to write ModuleName.Serialize(value) inside the Module itself. Same-Module calls should resolve without qualification and without depending on declaration order.