mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
RFC: Direct chaining of string terms
This commit is contained in:
parent
a6844a8247
commit
98e9790d48
1 changed files with 38 additions and 0 deletions
38
rfcs/syntax-direct-chain-of-string-term.md
Normal file
38
rfcs/syntax-direct-chain-of-string-term.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
# String terms are directly chainable
|
||||
|
||||
> Note: this RFC was adapted from an internal proposal that predates RFC process
|
||||
|
||||
## Summary
|
||||
|
||||
Allow string literals to be indexed on without parentheses or from an identifier. That is, the following snippet will become legal under this proposal:
|
||||
|
||||
```lua
|
||||
print("Hello, %s!":format("world"))
|
||||
print("0123456789ABCDEF":sub(i, i))
|
||||
```
|
||||
|
||||
## Motivation
|
||||
|
||||
Experienced Lua developers occasionally run into this paper-cut even after years of working with the language. Programmers in Lua frequently wants to format a user-facing message using a constant string, but the parser will not accept it as legible syntax.
|
||||
|
||||
## Design
|
||||
|
||||
Formally, the proposal is to move the `String` parser from `exp` to `prefixexp`:
|
||||
|
||||
```diff
|
||||
var ::= Name | prefixexp `[´ exp `]´ | prefixexp `.´ Name
|
||||
- exp ::= nil | false | true | Number | String | `...´ | function |
|
||||
+ exp ::= nil | false | true | Number | `...´ | function
|
||||
| prefixexp | tableconstructor | exp binop exp | unop exp
|
||||
- prefixexp ::= var | functioncall | `(´ exp `)´
|
||||
+ prefixexp ::= String | var | functioncall | `(´ exp `)´
|
||||
functioncall ::= prefixexp args | prefixexp `:´ Name args
|
||||
```
|
||||
|
||||
## 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.
|
||||
|
||||
## Alternatives
|
||||
|
||||
The infallible parser could be mended in this exact scenario to report a more friendly error message. We decided not to do this because there is more value to gain by simply supporting the main proposal.
|
Loading…
Add table
Reference in a new issue