Add namespace contextualisation for whole expressions #63
Labels
enhancement
New feature or request
good first issue
Good for newcomers
shonkier
Everything related to the language
At the moment we can only write
List.filter p (List.map f xs)
but it wouldbe nice to be able to write
List.(filter p (map f xs))
and have it mean thesame thing (given that none of
p
,f
, andxs
are in namespaceList
).I wanted to do that but somehow forgot about it.
The text was updated successfully, but these errors were encountered: