(ns: Namespace, name: string)
| 290 | } |
| 291 | |
| 292 | getElementTokens(ns: Namespace, name: string) { |
| 293 | const id = this.addNamespace(ns); |
| 294 | return(this.namespaceList[id].addElement(name).tokenList); |
| 295 | } |
| 296 | |
| 297 | getAttributeTokens(ns: Namespace, name: string) { |
| 298 | const id = this.addNamespace(ns); |
no test coverage detected