feat: change term parsing order

This commit is contained in:
rvcas
2022-06-07 22:02:20 -04:00
parent b47030b86d
commit 21d713ece3

View File

@@ -102,14 +102,14 @@ where
{
opaque!(no_partial(
choice((
attempt(constant()),
attempt(builtin()),
attempt(var()),
attempt(delay()),
attempt(lambda()),
attempt(apply()),
attempt(constant()),
attempt(delay()),
attempt(force()),
attempt(error()),
attempt(builtin()),
))
.skip(spaces())
))