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
Consider the following (incomplete) function with holes in the type and definition:
myFun : ?ArgType -> String myFun x = ?myFun_rhs
Inspecting the type of the hole myFun_rhs using interactive editing commands in Atom result in
myFun_rhs
x : ?ArgType?ArgType -------------------------------------- myFun_rhs : String
In the premise, the type of x is shown as ?ArgType?ArgType but it should be ?ArgType.
x
?ArgType?ArgType
?ArgType
Inspecting the type of the hole myFun_rhs in the Idris (v1.1.1) REPL gives the correct results
x : ?ArgType -------------------------------------- myFun_rhs : String
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. I think this is most likely an error in the idris ide protocol. I will check with emacs if it exhibits the same behavior.
Sorry, something went wrong.
No branches or pull requests
Consider the following (incomplete) function with holes in the type and definition:
Inspecting the type of the hole
myFun_rhs
using interactive editing commands in Atom result inIn the premise, the type of
x
is shown as?ArgType?ArgType
but it should be?ArgType
.Inspecting the type of the hole
myFun_rhs
in the Idris (v1.1.1) REPL gives the correct resultsThe text was updated successfully, but these errors were encountered: