1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Projections are lvalues.

This commit is contained in:
Rob Rix 2019-07-23 15:01:25 -04:00
parent 76eb3e2154
commit b58ddb470b
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -94,7 +94,8 @@ edge = Core.load <$ reserved "load" <*> expr
lvalue :: (TokenParsing m, Monad m) => m (Term Core User)
lvalue = choice
[ ident
[ prj
, ident
, parens expr
]