* Sets an attribute on a MathML node. MathML depends on attributes to convey a * semantic content, so this is used heavily.
(name: string, value: string)
| 66 | * semantic content, so this is used heavily. |
| 67 | */ |
| 68 | setAttribute(name: string, value: string) { |
| 69 | this.attributes[name] = value; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Gets an attribute on a MathML node. |
no outgoing calls
no test coverage detected