Skip to content

Commit b0d5639

Browse files
authored
Type parsing workaround (#18)
1 parent ea78522 commit b0d5639

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • src/main/java/edu/uiowa/cs/clc/kind2/results

src/main/java/edu/uiowa/cs/clc/kind2/results/Type.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,12 @@ public static Type getType(String type)
3434
case "int16":
3535
case "int32":
3636
case "int64":
37+
case "subrange":
3738
return new Int();
3839
case "real":
3940
return new Real();
41+
case "array":
42+
return new Array(new Bool());
4043
default:
4144
{
4245
if (type.matches("subrange \\[.*?\\] of int"))

0 commit comments

Comments
 (0)