Skip to content

Commit b9cac41

Browse files
committed
Exclude SML from allmodes
1 parent fcb4be7 commit b9cac41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gibbon-compiler/tests/TestRunner.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ instance FromJSON Mode where
168168
parseJSON oth = error $ "Cannot parse Mode: " ++ show oth
169169

170170
allModes :: [Mode]
171-
allModes = [minBound ..]
171+
allModes = filter (/= MPL) [minBound ..] -- all modes does not include MPL
172172

173173
readMode :: T.Text -> Mode
174174
readMode s =

0 commit comments

Comments
 (0)