We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
val
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
Notice in the following example x1 is colored differently than x2 and x3
x1
x2
x3
class Foo { val x1, x2, x3 = 0 }
The text was updated successfully, but these errors were encountered:
We might need to handle these ones in the same way (i.e. without coloring).
val x1, x2, x3 = ... val (x1, x2, x3) = ... val (None, Some(x2), x3) = ...
The only way to make this one work with colors is using look behind for the 2nd, 3rd, ... variables. But this feature is still missing in JS.
Sorry, something went wrong.
0352d72
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Notice in the following example
x1
is colored differently thanx2
andx3
The text was updated successfully, but these errors were encountered: