Bogdanp / elm-ast

A parser for Elm in Elm.
http://bogdanp.github.io/elm-ast/example/
BSD 3-Clause "New" or "Revised" License
143 stars 21 forks source link

Can't parse type tuples with functions inside #76

Open wende opened 7 years ago

wende commented 7 years ago
t : (Int, Type -> Type)

Won't work unless a function is wrapped in parens

t : (Int, (Type -> Type))