mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 01:50:59 +01:00
Why not use comments?
This is why.
This commit is contained in:
parent
d495078767
commit
dee5f3797f
1 changed files with 6 additions and 0 deletions
|
@ -87,4 +87,10 @@ Other potential syntaxes that were considered include a Rust-style syntax (`#[at
|
|||
|
||||
- Comments being used to control language features and flow means that tooling and users must care about them, which is antithetical to how comments are traditionally used
|
||||
|
||||
- Attribute-as-comments would naturally conflict with the language in a lot of weird ways and would just cause a lot of problems:
|
||||
```lua
|
||||
local f = --!native function() end
|
||||
print(f)
|
||||
```
|
||||
|
||||
As proposed, attributes would only be applicable on functions at first. They could instead be added to the entire language at once, which would facilitate widespread adoption immediately. However, that is a lot more work, and most of the potential uses for attributes are on functions, so it makes sense to begin with them.
|
||||
|
|
Loading…
Add table
Reference in a new issue