From 2c146f72731f2a2567b69015471748f24db1f0a6 Mon Sep 17 00:00:00 2001 From: Joe Melsha Date: Sat, 1 Feb 2025 04:54:45 -0600 Subject: [PATCH] Create syntax-from-require.md --- docs/syntax-from-require.md | 91 +++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 docs/syntax-from-require.md diff --git a/docs/syntax-from-require.md b/docs/syntax-from-require.md new file mode 100644 index 0000000..1e9b479 --- /dev/null +++ b/docs/syntax-from-require.md @@ -0,0 +1,91 @@ +# Scoped Module Imports for Luau + +## Summary + +Introduce a new syntax for scoped module imports in **Luau**, allowing selective imports of module members without requiring manual `local` assignments. This would streamline working with many dependencies, making code more readable and maintainable. + +## Motivation + +Currently, Luau requires modules to be imported using `require`, followed by manual assignments: + +```lua +local Pet = require(game.ReplicatedStorage.Library.Items.Pet) +local Currency = require(game.ReplicatedStorage.Library.Items.Currency) +``` + +In large Roblox projects, developers often need to require **20-50 individual modules** to accomplish a task. This results in repetitive and verbose module imports, making code harder to manage. + +I propose a cleaner syntax: + +```lua +from game.ReplicatedStorage.Library.Items require Pet, Currency +Pet("Dog") +Currency("Coins") +``` + +This improves readability and better reflects how modules are organized in large-scale Roblox development. + +### Expected Benefits +- More concise and readable imports. +- Eliminates redundant `local` assignments after requiring modules. +- Reduces clutter in scripts that rely on many modules. +- Better organization of large libraries with deeply nested module structures. + +## Design + +### Syntax + +```lua +from require , +from require as , as +from require * +``` + +#### Example Usage + +```lua +-- Old way +local Pet = require(game.ReplicatedStorage.Library.Items.Pet) +local Currency = require(game.ReplicatedStorage.Library.Items.Currency) +local Egg = require(game.ReplicatedStorage.Library.Items.Egg) + +-- New way +from game.ReplicatedStorage.Library.Items require Pet, Egg, Currency + +-- Usage +Pet("Dog") +Inventory:Add(Currency("Diamonds"):SetAmount(500)) +``` + +#### Import with Aliases + +```lua +from game.ReplicatedStorage.Library.Items require Pet as PetItem, Toy as ToyItem +PetItem("Dog") +ToyItem("Ball") +``` + +#### Import with Wildcard + +```lua +from game.ReplicatedStorage.Library.Items require * +Pet("Dog") +Toy("Ball") +``` + +### Semantics + +- `from require ` is equivalent to `local = require(.)`. +- `from require as ` binds the imported name to ``. +- Multiple names can be imported in one statement. +- The module is loaded only once, maintaining Luau’s existing `require` caching behavior. + +## Drawbacks + +- Introduces new syntax that deviates from Luau’s current module system. +- Adds complexity to the compiler/parser. +- May encourage excessive use of imports in a single script, potentially affecting readability. + +## Alternatives + +Create massive modules with dozens of requires built in, so called 'index' modules. This works, but floods the name space and stresses the type checking engine.