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
📝 Note: I'm using the VSCode editor plugin.
Let's say I have an interface (a very simple one, for this example):
interface Config where debugMode : Bool
If I try to implement it, after writing the implementation header, I'm offered an option to add clause:
However, if I run the code action, the following invalid code gets generated
Config implementation at File:4:1--4:13 = ?Config implementation at File:4:1--4:13_rhs
and inserted below the declaration:
A valid clause is generated, for example:
Config where debugMode = ?debugMode_rhs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
📝 Note: I'm using the VSCode editor plugin.
Problem
Let's say I have an interface (a very simple one, for this example):
If I try to implement it, after writing the implementation header, I'm offered an option to add clause:
However, if I run the code action, the following invalid code gets generated
and inserted below the declaration:
Expected behavior
A valid clause is generated, for example:
The text was updated successfully, but these errors were encountered: