Files
kotlin-fork/libraries/stdlib/api/js-v1/org.w3c.dom.parsing.kt
T
Anton Bannykh cbabb4f76a JS stdlib api test: various changes
- Setting -Doverwrite.output=true updates gold data
- Big packages don't get split into chunks
- Unique lines in the API are marked with /*∆*/ and diff test is removed
- Annotations on separate lines and other dump format tweaks
- Test data moved to libraries/stdlib/api/
- Minor visibility fix to Enum members
2020-06-15 11:49:15 +03:00

11 lines
422 B
Kotlin

/*∆*/ public open external class DOMParser {
/*∆*/ public constructor DOMParser()
/*∆*/
/*∆*/ public final fun parseFromString(str: kotlin.String, type: dynamic): org.w3c.dom.Document
/*∆*/ }
/*∆*/
/*∆*/ public open external class XMLSerializer {
/*∆*/ public constructor XMLSerializer()
/*∆*/
/*∆*/ public final fun serializeToString(root: org.w3c.dom.Node): kotlin.String
/*∆*/ }