Rename "named" to "defined" in dbscheme

This commit is contained in:
Owen Mansel-Chan
2025-02-13 15:53:24 +00:00
parent 64c3f703fe
commit 024fbf8f3a
3 changed files with 7 additions and 7 deletions

View File

@@ -856,7 +856,7 @@ var ChanTypes = map[gotypes.ChanDir]*BranchType{
}
// DefinedType is the type of defined types
var DefinedType = TypeKind.NewBranch("@namedtype", CompositeType)
var DefinedType = TypeKind.NewBranch("@definedtype", CompositeType)
// TypeSetLiteral is the type of type set literals
var TypeSetLiteral = TypeKind.NewBranch("@typesetliteraltype", CompositeType)
@@ -1138,7 +1138,7 @@ var BaseTypeTable = NewTable("base_type",
// UnderlyingTypeTable is the table associating defined types with their
// underlying type
var UnderlyingTypeTable = NewTable("underlying_type",
EntityColumn(DefinedType, "named").Unique(),
EntityColumn(DefinedType, "defined").Unique(),
EntityColumn(TypeType, "tp"),
)