(
type: MathNodeType,
children?: MathDomNode[],
classes?: string[]
)
| 51 | classes: string[]; |
| 52 | |
| 53 | constructor( |
| 54 | type: MathNodeType, |
| 55 | children?: MathDomNode[], |
| 56 | classes?: string[] |
| 57 | ) { |
| 58 | this.type = type; |
| 59 | this.attributes = {}; |
| 60 | this.children = children || []; |
| 61 | this.classes = classes || []; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Sets an attribute on a MathML node. MathML depends on attributes to convey a |
nothing calls this directly
no outgoing calls
no test coverage detected