(type, children)
| 6603 | |
| 6604 | class MathNode { |
| 6605 | constructor(type, children) { |
| 6606 | this.type = void 0; |
| 6607 | this.attributes = void 0; |
| 6608 | this.children = void 0; |
| 6609 | this.type = type; |
| 6610 | this.attributes = {}; |
| 6611 | this.children = children || []; |
| 6612 | } |
| 6613 | /** |
| 6614 | * Sets an attribute on a MathML node. MathML depends on attributes to convey a |
| 6615 | * semantic content, so this is used heavily. |
nothing calls this directly
no outgoing calls
no test coverage detected