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