lean4-htt/tests
Leonardo de Moura 7fce8b5d1f fix: notation command
@Kha Note that I had to write the weird pattern

```
match_syntax stx with
| `(notation:$prec $items* => $rhs)    => expandNotationAux stx prec items rhs
| `(notation $noprec* $items* => $rhs) => expandNotationAux stx none items rhs
| _ => Macro.throwUnsupported
```

with the weird `$noprec*` to match the case where the optional
precedence is not provided. I realized this is not a bug, but
I guess most users will be puzzled by this behavior. If we had a kind
for `notationItem`, I would be able to write
```
`(notation $items:notationItems* => $rhs)
```
2020-06-09 14:11:34 -07:00
..
bench chore: fix tests 2020-05-26 15:05:00 -07:00
compiler chore: remove sortApp 2020-06-03 15:18:16 -07:00
elabissues chore: fix syntax 2020-05-21 09:57:35 -07:00
ir chore(tests): fix do syntax in tests 2019-06-30 13:04:34 +02:00
lean fix: notation command 2020-06-09 14:11:34 -07:00
playground chore: fix tests 2020-05-26 15:05:01 -07:00
plugin chore: fix tests 2020-05-26 15:05:01 -07:00
.gitignore chore: move bin/ and .oleans into build directory 2020-05-14 14:47:54 +02:00
common.sh chore: add comment 2020-05-15 11:26:24 -07:00