mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 14:23:32 +03:00
7aee7c9b7c
Why: * To implement robust cross-project go-to-definition in LSP i.e you can jump to definition of any global name coming from library dependencies, as well as from the local project files. What it does: * Modify `FC`s to carry `ModuleIdent` for .idr sources, file name for .ipkg sources or nothing for interactive runs. * Add `--install-with-src` to install the source code alongside the ttc binaries. The source is installed into the same directory as the corresponding ttc file. Installed sources are made read-only. * As we install the sources pinned to the related ttc files we gain the versioning of sources for free.
12 lines
570 B
Plaintext
12 lines
570 B
Plaintext
1/1: Building boom (boom.idr)
|
|
Error: While processing right hand side of with block in eraseVar. Can't solve constraint between: S (countGreater thr xs) and countGreater thr xs.
|
|
|
|
boom:23:42--23:44
|
|
19 | eraseVar : (thr : Int) -> (ctx : Vect n Int) -> Fin n -> Maybe (Fin (countGreater thr ctx))
|
|
20 | eraseVar thr (x :: xs) j with (x .<=. thr)
|
|
21 | eraseVar thr (x :: xs) FZ | True = Nothing
|
|
22 | eraseVar thr (x :: xs) FZ | False = Just FZ
|
|
23 | eraseVar thr (x :: xs) (FS i) | True = FS <$> eraseVar thr xs i
|
|
^^
|
|
|