feat: change term parsing order
This commit is contained in:
parent
b47030b86d
commit
21d713ece3
|
@ -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())
|
||||
))
|
||||
|
|
Loading…
Reference in New Issue