Show convert instruction when needed - int(xx), String(xx), etc....

This commit is contained in:
Jindra Petřík
2022-11-24 22:38:31 +01:00
parent 86fa76678b
commit e22669d377
67 changed files with 492 additions and 93 deletions

View File

@@ -35,6 +35,14 @@ public class TypeItem extends GraphTargetItem {
public static TypeItem BOOLEAN = new TypeItem(DottedChain.BOOLEAN);
public static TypeItem STRING = new TypeItem(DottedChain.STRING);
public static TypeItem NUMBER = new TypeItem(DottedChain.NUMBER);
public static TypeItem INT = new TypeItem(DottedChain.INT);
public static TypeItem UINT = new TypeItem(DottedChain.UINT);
public static TypeItem UNDEFINED = new TypeItem(DottedChain.UNDEFINED);
public static TypeItem ARRAY = new TypeItem(DottedChain.ARRAY);