1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00

[parser] add & to accepted symbol characters

This commit is contained in:
Jan Mas Rovira 2022-02-07 01:20:31 +01:00
parent 22d4b97b99
commit 672d6750f6

View File

@ -46,7 +46,7 @@ bareIdentifier = do
cat == MathSymbol,
cat == CurrencySymbol,
cat == ModifierLetter,
c `elem` ("_'-*," :: String)
c `elem` ("_'-*,&" :: String)
]
where
cat = generalCategory c