mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Move the recommendation to the design section.
Also mention that the drawback is solved if we obey it.
This commit is contained in:
parent
98e9790d48
commit
a4a414437d
1 changed files with 3 additions and 1 deletions
|
@ -29,9 +29,11 @@ Formally, the proposal is to move the `String` parser from `exp` to `prefixexp`:
|
|||
functioncall ::= prefixexp args | prefixexp `:´ Name args
|
||||
```
|
||||
|
||||
The recommendation is that we should keep statements starting with string tokens as illegal syntax, as it is too niche to support use cases with side-effecting functions.
|
||||
|
||||
## Drawbacks
|
||||
|
||||
Statements starting by parsing `prefixexp` will now allow string tokens to be parsed despite that the return values of the function calls are now discarded. The recommendation is that we should keep statements starting with string tokens as illegal syntax as it is too niche to support use cases with side-effecting functions.
|
||||
Statements starting by parsing `prefixexp` will now allow string tokens to be parsed despite that the return values of the function calls are always discarded. This is a non-issue if we obey the recommendation to ban statements starting with string tokens.
|
||||
|
||||
## Alternatives
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue