From 056bc4c1527e46aac3953b41944dfe64a8aba1e7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 4 Mar 2022 14:47:25 +0100 Subject: Lists --- src/Fun/Grammar.hs | 17 +++++++++++++---- src/Fun/Typer.hs | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/Fun/Grammar.hs b/src/Fun/Grammar.hs index 422a211..7ec9e42 100644 --- a/src/Fun/Grammar.hs +++ b/src/Fun/Grammar.hs @@ -77,12 +77,21 @@ functionTypes = <+> functionType >>> build "function types" - where build (a, b) = (map resolveType a) ++ [resolveType b] + where build (a, b) = a ++ [b] -functionType :: Parser String +functionType :: Parser Type functionType = - (letter <=> isUpper) <+> oneOrMore alphanum >>> build "function type" - where build (first, rest) = first : rest + (letter <=> isUpper) + <+> oneOrMore alphanum + >>> build + <|> literal '[' + <-+> functionType + <+-> literal ']' + >>> buildList + "function type" + where + build (first, rest) = resolveType $ first : rest + buildList t = ListType t functionTypeDelimiter :: Parser Char functionTypeDelimiter = literal ':' "function type delimiter" diff --git a/src/Fun/Typer.hs b/src/Fun/Typer.hs index def34a1..efed9cc 100644 --- a/src/Fun/Typer.hs +++ b/src/Fun/Typer.hs @@ -1,6 +1,6 @@ module Fun.Typer where -data Type = UnknownType | NormalType String +data Type = UnknownType | NormalType String | ListType Type deriving Show -- TODO: Struct (like 'data' with mutiple), Union (like 'data' with '|') -- cgit v1.2.3