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
For example, is this file actually used?
It appears that these lines
agda-stdlib/tests/reflection/assumption/Main.agda
Lines 54 to 58 in 94906c0
concatMap
The original report (on the Univalent Agda Discord) was that this code
printTelescope : Telescope → TC ⊤ printTelescope [] = returnTC tt printTelescope ((id , (arg info t)) ∷ ts) = do printTelescope ts debugPrint "" 1 (strErr id ∷ strErr " : " ∷ termErr t ∷ [])
didn't do the right thing, and should instead have the second case be
printTelescope ((id , (arg info t)) ∷ ts) = do printTelescope ts inContext ts do debugPrint "" 1 (strErr id ∷ strErr " : " ∷ termErr t ∷ [])
The relation is that (apparently) the author of printTelescope was copying out (and expanding) the code in that example.
printTelescope
I have never used any of the reflection stuff myself, so I'm just reporting. @gallais seems to be the author.
The text was updated successfully, but these errors were encountered:
They are run, however without any logging so this debugging code is not printed.
Sorry, something went wrong.
No branches or pull requests
For example, is this file actually used?
It appears that these lines
agda-stdlib/tests/reflection/assumption/Main.agda
Lines 54 to 58 in 94906c0
concatMap
doesn't do.The original report (on the Univalent Agda Discord) was that this code
didn't do the right thing, and should instead have the second case be
The relation is that (apparently) the author of
printTelescope
was copying out (and expanding) the code in that example.I have never used any of the reflection stuff myself, so I'm just reporting. @gallais seems to be the author.
The text was updated successfully, but these errors were encountered: