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