(pathName, alternate)
| 1334 | } |
| 1335 | class PathNode { |
| 1336 | constructor(pathName, alternate) { |
| 1337 | this.pathName = void 0; |
| 1338 | this.alternate = void 0; |
| 1339 | this.pathName = pathName; |
| 1340 | this.alternate = alternate; // Used only for tall \sqrt |
| 1341 | } |
| 1342 | |
| 1343 | toNode() { |
| 1344 | const svgNS = "http://www.w3.org/2000/svg"; |
nothing calls this directly
no outgoing calls
no test coverage detected