summaryrefslogtreecommitdiff
path: root/src/Transfer/Interpreter.hs
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2006-03-03 10:34:15 +0000
committerbringert <bringert@cs.chalmers.se>2006-03-03 10:34:15 +0000
commit145e0a4c8212a32c669d14cb67a615add5f0ad56 (patch)
treede7f434b833254fb1c0dbb388833f77fa7acf43a /src/Transfer/Interpreter.hs
parent6c5763615fc3e2c5fb40b15daec39d301a0a9a18 (diff)
Transfer: Removed PType from source and core languages.
Diffstat (limited to 'src/Transfer/Interpreter.hs')
-rw-r--r--src/Transfer/Interpreter.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Transfer/Interpreter.hs b/src/Transfer/Interpreter.hs
index 428c8018b..926b7bd3a 100644
--- a/src/Transfer/Interpreter.hs
+++ b/src/Transfer/Interpreter.hs
@@ -193,7 +193,6 @@ match (PCons c' ps) (VCons c vs)
match (PVar x) v = Just (bind x v)
match (PRec fps) (VRec fs) = concatM [ match p (recLookup f fs) | FieldPattern f p <- fps ]
match (PInt i) (VInt i') | i == i' = Just []
-match PType VType = Just []
match (PStr s) (VStr s') | s == s' = Just []
match (PInt i) (VInt i') | i == i' = Just []
match _ _ = Nothing