lean4-htt/tests
Leonardo de Moura 9d304df757 feat: heterogeneous Append experiment
@Kha This one required a bunch of manual fixes. The main issue is that
before we added the string interpolation feature, we created
`MessageData`s using `++` and coercions. For example, given
`(e : Expr)`, we would write
```
let msg : MessageData := "type: " ++ e
```
and rely on the coercions `String -> MessageData` and
`Expr -> MessageData`, and the instance `Append MessageData`.
However, heterogeneous operators "block" the expected type propagation downwards.
This kind of code is obsolete now since we can write a more compact
version using string interpolation
```
let msg := m!"type: {e}"
```
2020-12-01 16:32:41 -08:00
..
bench refactor: heterogeneous operators 2020-12-01 14:02:46 -08:00
compiler refactor: heterogeneous operators 2020-12-01 14:02:46 -08:00
elabissues chore: avoid Has prefix in type classes 2020-10-27 18:29:19 -07:00
ir chore(tests): fix do syntax in tests 2019-06-30 13:04:34 +02:00
lean feat: heterogeneous Append experiment 2020-12-01 16:32:41 -08:00
playground test: add nondet example 2020-10-29 16:33:40 -07:00
plugin feat: run linters in the new frontend 2020-10-23 14:04:28 -07:00
.gitignore chore: move bin/ and .oleans into build directory 2020-05-14 14:47:54 +02:00
common.sh test: ignore \r when diffing 2020-09-15 09:32:00 -07:00