rfc:alternative-closure-use-syntax
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:alternative-closure-use-syntax [2019/06/15 21:44] – created wesnetmo | rfc:alternative-closure-use-syntax [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 10: | Line 10: | ||
PHP users often say that they find defining the lexical-scope imports cumbersome, because | PHP users often say that they find defining the lexical-scope imports cumbersome, because | ||
- | they hate writing | + | they hate importing |
- | what's actually annoying is not having to write the variable names, but the syntax | + | |
- | with which the imports are defined. In ES we are forced | + | My opinion on the matter is that what's actually annoying is not writing |
- | find it annoying; in PHP we don't have to declare variables, but we are required to | + | names, but the syntax with which the imports are defined. |
- | specify which one we want to import in '' | + | |
- | the syntax. | + | In ES we are required |
+ | have to declare variables, but we are required to specify which one we want to import in | ||
+ | '' | ||
+ | but irksome in PHP. | ||
Specifically, | Specifically, | ||
- | Whitespace, parentheses, | + | Whitespace, parentheses, |
middle of the signature, it is very invasive, visually, as it separates the arguments from | middle of the signature, it is very invasive, visually, as it separates the arguments from | ||
the return information: | the return information: | ||
Line 74: | Line 77: | ||
): ReturnType { | ): ReturnType { | ||
use $importVariable1, | use $importVariable1, | ||
+ | | ||
+ | // ... | ||
}; | }; | ||
Line 86: | Line 91: | ||
use $importVariable1, | use $importVariable1, | ||
use $importVariable3, | use $importVariable3, | ||
+ | | ||
+ | // ... | ||
}; | }; | ||
</ | </ | ||
Line 103: | Line 110: | ||
echo 123; | echo 123; | ||
use $importVariable3, | use $importVariable3, | ||
- | // ^ syntax error, as use can only be preceded by other use statements | + | // ^ syntax error, as "use" |
}; | }; | ||
</ | </ | ||
Line 123: | Line 130: | ||
Vote will require 2/3 majority | Vote will require 2/3 majority | ||
- | |||
- | ===== References ===== | ||
- | |||
- | * abc | ||
- | * def | ||
- |
rfc/alternative-closure-use-syntax.1560635083.txt.gz · Last modified: 2025/04/03 13:08 (external edit)