separate out runtime and buildtime uucode tables

pull/8757/head
Jacob Sandlund 2025-09-24 08:34:21 -04:00
parent 444b40bc4a
commit 8bcab93c21
1 changed files with 11 additions and 18 deletions

View File

@ -60,29 +60,22 @@ const is_symbol = config.Extension{
pub const tables = [_]config.Table{
.{
.extensions = &.{wcwidth},
.name = "runtime",
.extensions = &.{},
.fields = &.{
d.field("is_emoji_presentation"),
d.field("case_folding_full"),
},
},
.{
.name = "buildtime",
.extensions = &.{ wcwidth, width, is_symbol },
.fields = &.{
width.field("width"),
d.field("grapheme_break"),
is_symbol.field("is_symbol"),
d.field("is_emoji_modifier"),
d.field("is_emoji_modifier_base"),
},
},
.{
.extensions = &.{ wcwidth, width },
.fields = &.{
width.field("width"),
},
},
.{
.fields = &.{
d.field("grapheme_break"),
},
},
.{
.extensions = &.{is_symbol},
.fields = &.{
is_symbol.field("is_symbol"),
},
},
};