We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
foo := ( x ...rest ) -> null
const foo = x(...rest)(function () { return null; });
function foo(x, ...rest) { return null; }
foo := ( x rest... ) -> null
@STRd6:
We'll want to add a nested version of NonEmptyParameters similar to how we do object and arrays
NonEmptyParameters
In particular to handle inputs like:
function f<T>( t: item: T u: item: T )
(which currently works but doesn't really understand the middle indentation level)
The text was updated successfully, but these errors were encountered:
Allow newline before ...rest parameter
eae5332
Partial fix to #760
Indented function parameters
4771dbc
Rewrite NonEmptyParameters to include Nested forms. Fixes #760. Fixes #811.
Successfully merging a pull request may close this issue.
Input
Current Output
Expected Output
Workaround
Plan
@STRd6:
In particular to handle inputs like:
(which currently works but doesn't really understand the middle indentation level)
The text was updated successfully, but these errors were encountered: