// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com). // All rights reserved. // common-type-names.go package expr const ( typeBoolean = "boolean" typeFloat = "decimal" typeFraction = "fraction" typeInt = "integer" typeNumber = "number" typeString = "string" )