class UnsetNode
- supers: Node
Example:
assert.node_type("unset", nil, {
id = "unset (15)",
fields = {
"prev (-1)",
"next (0)",
"id (1)",
"subtype (2)",
"attr (3)",
"width (4)",
"depth (5)",
"height (6)",
"dir (7)",
"shrink (8)",
"glue_order (9)",
"glue_sign (10)",
"stretch (11)",
"span (12)",
"head (13)",
},
})
Reference:
- Corresponding C source code: texnodes.c#L941-L952
😱 Types incomplete or incorrect? 🙏 Please contribute!
fields
UnsetNode.attr
UnsetNode.attr : Node {
next: Node?,
prev: Node?,
id: integer,
subtype: integer,
head: Node?,
attr: Node,
}