rfc:alternative-closure-use-syntax
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:alternative-closure-use-syntax [2019/06/15 21:47] – 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 |
- | My (updated) | + | My opinion on the matter is that what's actually annoying is not writing |
- | the variable names, but the syntax with which the imports are defined. | + | names, but the syntax with which the imports are defined. |
- | In ES we are forced | + | In ES we are required |
have to declare variables, but we are required to specify which one we want to import in | have to declare variables, but we are required to specify which one we want to import in | ||
'' | '' | ||
Line 77: | Line 77: | ||
): ReturnType { | ): ReturnType { | ||
use $importVariable1, | use $importVariable1, | ||
+ | | ||
+ | // ... | ||
}; | }; | ||
Line 89: | Line 91: | ||
use $importVariable1, | use $importVariable1, | ||
use $importVariable3, | use $importVariable3, | ||
+ | | ||
+ | // ... | ||
}; | }; | ||
</ | </ | ||
Line 106: | 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 126: | Line 130: | ||
Vote will require 2/3 majority | Vote will require 2/3 majority | ||
- | |||
- | ===== References ===== | ||
- | |||
- | * abc | ||
- | * def | ||
- |
rfc/alternative-closure-use-syntax.1560635270.txt.gz · Last modified: 2025/04/03 13:08 (external edit)