mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
Merge f2ef6bfc9b
into cd0088e55d
This commit is contained in:
commit
152890ea43
1 changed files with 71 additions and 0 deletions
71
docs/syntax-attribute-functions-mustuse.md
Normal file
71
docs/syntax-attribute-functions-mustuse.md
Normal file
|
@ -0,0 +1,71 @@
|
|||
# MustUse Attribute for Functions
|
||||
|
||||
## Summary
|
||||
|
||||
This RFC proposes a `@mustuse` attribute, which may be applied to a function, that enforces the usage of a function's return value.
|
||||
|
||||
If the return value is not used, a lint should be raised during analysis time.
|
||||
|
||||
This feature aims to improve code quality by ensuring that developers do not inadvertently ignore important return values, which can lead to bugs and unintended behavior.
|
||||
|
||||
## Motivation
|
||||
|
||||
In many programming scenarios, functions return values that are critical for the correct operation of the program. Developers sometimes forget to use these return values, leading to potential issues such as unhandled errors or missed data.
|
||||
|
||||
Consider the following code, which makes a network request making use of a user-implemented `Future` async primitive, which rely on having the `:await` method called on them to execute.
|
||||
|
||||
```luau
|
||||
function fetchData(): Future<>
|
||||
return Future.new(function()
|
||||
net.request({
|
||||
url = "https://jsonplaceholder.typicode.com/todos",
|
||||
method = "POST"
|
||||
body = {
|
||||
userId = 1,
|
||||
title = "Hello, world!",
|
||||
completed = false,
|
||||
}
|
||||
})
|
||||
end)
|
||||
end
|
||||
|
||||
-- Here, the developer forgets to use the returned `Future` by calling
|
||||
-- `:await` on it, which leads to the network request never being made
|
||||
fetchData()
|
||||
```
|
||||
|
||||
The `@mustuse` attribute will serve as a reminder and enforce the requirement to utilize the return value of a function. This will support use cases where functions return status codes, error messages, or important data that must be processed. The expected outcome is a reduction in bugs related to ignored return values and an overall improvement in code reliability.
|
||||
|
||||
## Design
|
||||
|
||||
The `@mustuse` attribute can be applied to any function declaration. When a function with this attribute is called, the return value must be assigned to a variable or used in an expression. If the return value is not used, a `MustUse` lint warning will be generated.
|
||||
|
||||
The syntax for using the `@mustuse` attribute is straightforward. It can be placed directly before the function declaration, just as any other function attributes:
|
||||
|
||||
```luau
|
||||
@mustuse
|
||||
function fetchData(): Future<>
|
||||
-- ...
|
||||
end
|
||||
|
||||
fetchData() -- Error; MustUse: Unusued return value must be used
|
||||
fetchData():await() -- Valid; Used in a chained function call
|
||||
someOtherFunction(fetchData()) -- Valid; Used in an expression as function argument
|
||||
local _ = fetchData() -- Valid; Assigned to a variable
|
||||
```
|
||||
|
||||
## Drawbacks
|
||||
|
||||
Introducing the `@mustuse` attribute may lead to several drawbacks:
|
||||
|
||||
1. **Misuse of attribute**: Developers may mislabel functions which do not necessarily require return values to be used as `@mustuse`, leading to false positives.
|
||||
2. **Increased verbosity**: The presence of the `@mustuse` attribute may lead to more verbose code, as developers will need to ensure they are using return values, potentially leading to additional variable assignments.
|
||||
3. **Learning curve**: New developers may find the requirement to use return values cumbersome, especially if they are accustomed to languages that do not enforce such rules.
|
||||
|
||||
## Alternatives
|
||||
|
||||
An alternative approach would be to rely on documentation and code reviews to ensure that return values are used appropriately. This would avoid the complexity of introducing a new attribute but may not be as effective in preventing bugs.
|
||||
|
||||
Another alternative could be to implement such a feature into an existing Luau linter like [Selene](https://github.com/Kampfkarren/selene). This would allow for flexible adoption, where developers would need to opt-in to use a linter which encourages best practices.
|
||||
|
||||
Lastly, Luau could consider a user-defined attribute system, where developers can implement their own attributes, such as `@mustuse`. However, it is more complex to implement such a feature into Luau at its current stage.
|
Loading…
Add table
Reference in a new issue