1
1
mirror of https://github.com/github/semantic.git synced 2025-01-09 00:56:32 +03:00

Introduce TArr type

This commit is contained in:
Timothy Clem 2017-11-29 17:04:37 -08:00
parent 99ec8a1758
commit 5e22f19714

View File

@ -8,7 +8,7 @@ import Prelude hiding (fail)
type TName = Int
data Type = Int | Bool | String | Unit | Type :-> Type | Type :* Type | TVar TName
data Type = Int | Bool | String | Unit | Type :-> Type | Type :* Type | TVar TName | TArr [TName]
deriving (Eq, Ord, Show)