implement isNumericType

This commit is contained in:
2020-03-09 12:51:28 +01:00
parent 3b5dc43cfb
commit 8bb912b377
2 changed files with 10 additions and 0 deletions

View File

@@ -33,4 +33,9 @@ public class NullType extends Type {
return false;
}
@Override
public boolean isNumericType() {
return false;
}
}

View File

@@ -46,4 +46,9 @@ public class StructType extends Type {
return false;
}
@Override
public boolean isNumericType() {
return false;
}
}