feat: change term parsing order

This commit is contained in:
rvcas 2022-06-07 22:02:20 -04:00
parent b47030b86d
commit 21d713ece3
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 3 additions and 3 deletions

View File

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