common-type-names.go: TypeNil and TyperDict added

This commit is contained in:
Celestino Amoroso 2024-09-09 15:16:42 +02:00
parent 4b176eb868
commit d6bf5ee500

View File

@ -6,6 +6,7 @@ package expr
const (
TypeAny = "any"
TypeNil = "nil"
TypeBoolean = "boolean"
TypeFloat = "float"
TypeFraction = "fraction"
@ -15,6 +16,7 @@ const (
TypeNumber = "number"
TypePair = "pair"
TypeString = "string"
TypeDict = "dict"
TypeListOf = "list-of-"
TypeListOfStrings = "list-of-strings"
)