separate out runtime and buildtime uucode tables
parent
444b40bc4a
commit
8bcab93c21
|
|
@ -60,29 +60,22 @@ const is_symbol = config.Extension{
|
||||||
|
|
||||||
pub const tables = [_]config.Table{
|
pub const tables = [_]config.Table{
|
||||||
.{
|
.{
|
||||||
.extensions = &.{wcwidth},
|
.name = "runtime",
|
||||||
|
.extensions = &.{},
|
||||||
.fields = &.{
|
.fields = &.{
|
||||||
d.field("is_emoji_presentation"),
|
d.field("is_emoji_presentation"),
|
||||||
d.field("case_folding_full"),
|
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"),
|
||||||
d.field("is_emoji_modifier_base"),
|
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"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue