lean4-htt/tests
Joachim Breitner ea20911a85
feat: Better error location in structural recursion (#2819)
previously, only the WellFounded code was making use of the error
location in the RecApp-metadata. We can do the same for structural
recursion. This way,
```
def f (n : Nat) : Nat :=
  match n with
  | 0 => 0
  | n + 1 => f (n + 1)
```
will show the error with squiggly lines under `f (n + 1)`, and not at
`def f`.
2023-11-05 22:24:17 +01:00
..
bench perf: do not inhibit caching of default-level match reduction 2023-10-08 17:24:20 -07:00
compiler fix: use -O3 for LLVM tests in common.sh 2023-11-02 23:21:47 +01:00
elabissues chore: fix more typos in comments 2023-10-08 14:37:34 -07:00
ir
lean feat: Better error location in structural recursion (#2819) 2023-11-05 22:24:17 +01:00
pkg chore: split up & simplify importModules 2023-08-31 15:37:33 -04:00
playground perf: Use flat ByteArrays in Trie (#2529) 2023-09-20 13:22:37 +02:00
plugin feat: profiling of linters 2023-04-18 15:30:21 +02:00
simpperf
.gitignore
common.sh fix: use -O3 for LLVM tests in common.sh 2023-11-02 23:21:47 +01:00