You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
919 B

package org.jetbrains.compose.resources.vector.xmldom
import org.w3c.dom.Element as DomElement
import org.w3c.dom.Node as DomNode
internal open class NodeImpl(val n: DomNode): Node {
override val textContent: String?
get() = n.textContent
override val nodeName: String
get() = n.nodeName
override val localName: String
get() = n.localName
override val childNodes: NodeList
get() =
object: NodeList {
override fun item(i: Int): Node {
val child = n.childNodes.item(i)
return if (child is DomElement) ElementImpl(child) else NodeImpl(child)
}
override val length: Int = n.childNodes.length
}
override val namespaceURI: String
get() = n.namespaceURI
override fun lookupPrefix(namespaceURI: String): String = n.lookupPrefix(namespaceURI)
}