From 1034425907243ad00b94d60ef6379b3ce4543c89 Mon Sep 17 00:00:00 2001 From: NightrainsRbx Date: Sun, 2 Feb 2025 20:20:42 -0500 Subject: [PATCH 1/2] init --- docs/resolve-exported-type-of-same-name.md | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 docs/resolve-exported-type-of-same-name.md diff --git a/docs/resolve-exported-type-of-same-name.md b/docs/resolve-exported-type-of-same-name.md new file mode 100644 index 0000000..550bd04 --- /dev/null +++ b/docs/resolve-exported-type-of-same-name.md @@ -0,0 +1,53 @@ +# Resolve exported type of same name as the module implicitly. + +## Summary + +Remove redundancy when using an exported type that shares the same name as its module by implicitly resolving the type with the module's name. + +## Motivation + +It is common to export a type that represents what the module returns, especially in OOP. However, when using that type, you end up repeating the same name, ie: `Maid.Maid`, `Signal.Signal`, `Promise.Promise`. + +This undoubtedly feels redundant and like boilerplate. While defining type aliases locally can mitigate this, they are also boilerplate. + +## Design + +When the name of a variable containing a module is `Something`, the type `Something` alone resolves to `Something.Something`, provided that: + +- The type `Something` does not already exist locally or globally. +- The module exports a type named `Something`; otherwise, a type error is raised. + +This is based on the name of the variable, not the name of the module's script or file. + +For example: +```luau +local Something = require(path.to.Something) + +local x: Something +``` +Would be equivalent to: +```luau +local Something = require(path.to.Something) + +local x: Something.Something +``` + +If a type alias of the same name is defined, it will immediately opaque the module, so doing `type Something = Something` results in a cyclic type. + +This should be backward-compatible, intuitive, and straightforward to implement. + +## Drawbacks + +This requires the user to name their variables consistently, or if using the alternative outlined below, it would require the module to be the same name as the type it exports. However, since this is just syntactic sugar, the user is opting in to use it. + +## Alternatives + +A different approach would be to use the module's actual name instead of the variable's name. So the following code would work: + +```luau +local something = require(path.to.Something) + +local x: Something +``` + +However this would be harder to implement, and the type system already uses the variable as the source for importing types, while this is disconnected from it, so the original design may fit better. \ No newline at end of file From e63467b0be3e1567930fefa6e0cdccf4d72dea22 Mon Sep 17 00:00:00 2001 From: NightrainsRbx Date: Sun, 2 Feb 2025 20:30:56 -0500 Subject: [PATCH 2/2] correct --- docs/resolve-exported-type-of-same-name.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resolve-exported-type-of-same-name.md b/docs/resolve-exported-type-of-same-name.md index 550bd04..4580f2b 100644 --- a/docs/resolve-exported-type-of-same-name.md +++ b/docs/resolve-exported-type-of-same-name.md @@ -38,7 +38,7 @@ This should be backward-compatible, intuitive, and straightforward to implement. ## Drawbacks -This requires the user to name their variables consistently, or if using the alternative outlined below, it would require the module to be the same name as the type it exports. However, since this is just syntactic sugar, the user is opting in to use it. +This requires the user to name their variables consistently, or if using the alternative outlined below, it would require the module to have the same name as the type it exports. However, since this is just syntactic sugar, the user is opting to use it. ## Alternatives