2024-05-01 07:10:11 +02:00
|
|
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
|
|
// All rights reserved.
|
|
|
|
|
|
|
|
// common-type-names.go
|
|
|
|
package expr
|
|
|
|
|
|
|
|
const (
|
2024-06-06 05:31:35 +02:00
|
|
|
TypeAny = "any"
|
|
|
|
TypeBoolean = "boolean"
|
|
|
|
TypeFloat = "float"
|
|
|
|
TypeFraction = "fraction"
|
|
|
|
TypeHandle = "handle"
|
|
|
|
TypeInt = "integer"
|
|
|
|
TypeItem = "item"
|
|
|
|
TypeNumber = "number"
|
|
|
|
TypePair = "pair"
|
|
|
|
TypeString = "string"
|
2024-06-07 08:59:04 +02:00
|
|
|
TypeListOf = "list-of-"
|
|
|
|
TypeListOfStrings = "list-of-strings"
|
2024-05-01 07:10:11 +02:00
|
|
|
)
|