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
All of these should of course be equal, but are unfortunately not:
foo: func (a := false, b := true) // works moo: func (a: Bool = false, b := true) // works bar: func (a := false, b: Bool = true) // does not work car: func (a: Bool = false, b: Bool = true) // does not work
For example, bar fails with error Couldn't unwrap decl 'false: Bool', which suggests rock parses something incorrectly.
bar
error Couldn't unwrap decl 'false: Bool'
The text was updated successfully, but these errors were encountered:
Huh, weird. Will be looking into it.
Sorry, something went wrong.
No branches or pull requests
All of these should of course be equal, but are unfortunately not:
For example,
bar
fails witherror Couldn't unwrap decl 'false: Bool'
, which suggests rock parses something incorrectly.The text was updated successfully, but these errors were encountered: