From 3dfb510a62962256425d7fc2c430c5803dd20dd0 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Tue, 7 Aug 2012 21:56:04 +0400 Subject: [PATCH] Regenerated JavaScript stubs. --- js/js.libraries/src/core/dom.kt | 78 +++++++++---------- js/js.libraries/src/core/domEvents.kt | 8 +- .../kotlin/tools/GenerateJavaScriptStubs.kt | 2 +- 3 files changed, 44 insertions(+), 44 deletions(-) diff --git a/js/js.libraries/src/core/dom.kt b/js/js.libraries/src/core/dom.kt index c2c4b53bee6..bb9bca7cac1 100644 --- a/js/js.libraries/src/core/dom.kt +++ b/js/js.libraries/src/core/dom.kt @@ -4,7 +4,7 @@ package org.w3c.dom // -// NOTE THIS FILE IS AUTO-GENERATED by the GeneratedJavaScriptStubs.kt +// NOTE THIS FILE IS AUTO-GENERATED by the GenerateJavaScriptStubs.kt // See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib // @@ -28,11 +28,11 @@ native public trait CDATASection: Text { native public trait CharacterData: Node { public var data: String public val length: Int + public fun appendData(arg1: String?): Unit = js.noImpl + public fun deleteData(arg1: Int, arg2: Int): Unit = js.noImpl + public fun insertData(arg1: Int, arg2: String?): Unit = js.noImpl public fun replaceData(arg1: Int, arg2: Int, arg3: String?): Unit = js.noImpl public fun substringData(arg1: Int, arg2: Int): String = js.noImpl - public fun appendData(arg1: String?): Unit = js.noImpl - public fun insertData(arg1: Int, arg2: String?): Unit = js.noImpl - public fun deleteData(arg1: Int, arg2: Int): Unit = js.noImpl } native public trait Comment: CharacterData { @@ -49,21 +49,21 @@ native public trait Document: Node { public val xmlEncoding: String public var xmlStandalone: Boolean public var xmlVersion: String - public fun createElement(arg1: String?): Element = js.noImpl + public fun adoptNode(arg1: Node): Node = js.noImpl + public fun createAttribute(arg1: String?): Attr = js.noImpl + public fun createAttributeNS(arg1: String?, arg2: String?): Attr = js.noImpl + public fun createCDATASection(arg1: String?): CDATASection = js.noImpl public fun createComment(arg1: String?): Comment = js.noImpl public fun createDocumentFragment(): DocumentFragment = js.noImpl - public fun createTextNode(arg1: String?): Text = js.noImpl - public fun createCDATASection(arg1: String?): CDATASection = js.noImpl - public fun createProcessingInstruction(arg1: String?, arg2: String?): ProcessingInstruction = js.noImpl - public fun createAttribute(arg1: String?): Attr = js.noImpl - public fun createEntityReference(arg1: String?): EntityReference = js.noImpl - public fun getElementsByTagName(arg1: String?): NodeList = js.noImpl - public fun importNode(arg1: Node, arg2: Boolean): Node = js.noImpl + public fun createElement(arg1: String?): Element = js.noImpl public fun createElementNS(arg1: String?, arg2: String?): Element = js.noImpl - public fun createAttributeNS(arg1: String?, arg2: String?): Attr = js.noImpl - public fun getElementsByTagNameNS(arg1: String?, arg2: String?): NodeList = js.noImpl + public fun createEntityReference(arg1: String?): EntityReference = js.noImpl + public fun createProcessingInstruction(arg1: String?, arg2: String?): ProcessingInstruction = js.noImpl + public fun createTextNode(arg1: String?): Text = js.noImpl public fun getElementById(arg1: String?): Element = js.noImpl - public fun adoptNode(arg1: Node): Node = js.noImpl + public fun getElementsByTagName(arg1: String?): NodeList = js.noImpl + public fun getElementsByTagNameNS(arg1: String?, arg2: String?): NodeList = js.noImpl + public fun importNode(arg1: Node, arg2: Boolean): Node = js.noImpl public fun normalizeDocument(): Unit = js.noImpl public fun renameNode(arg1: Node, arg2: String?, arg3: String?): Node = js.noImpl } @@ -82,9 +82,9 @@ native public trait DocumentType: Node { native public trait DOMConfiguration { public val parameterNames: DOMStringList - public fun setParameter(arg1: String?, arg2: Any): Unit = js.noImpl - public fun getParameter(arg1: String?): Any = js.noImpl public fun canSetParameter(arg1: String?, arg2: Any): Boolean = js.noImpl + public fun getParameter(arg1: String?): Any = js.noImpl + public fun setParameter(arg1: String?, arg2: Any): Unit = js.noImpl } native public trait DOMError { @@ -108,9 +108,9 @@ native public trait DOMErrorHandler { native public trait DOMImplementation { public fun getFeature(arg1: String?, arg2: String?): Any = js.noImpl - public fun hasFeature(arg1: String?, arg2: String?): Boolean = js.noImpl - public fun createDocumentType(arg1: String?, arg2: String?, arg3: String?): DocumentType = js.noImpl public fun createDocument(arg1: String?, arg2: String?, arg3: DocumentType?): Document = js.noImpl + public fun createDocumentType(arg1: String?, arg2: String?, arg3: String?): DocumentType = js.noImpl + public fun hasFeature(arg1: String?, arg2: String?): Boolean = js.noImpl } native public trait DOMImplementationList { @@ -137,18 +137,18 @@ native public trait Element: Node { public val schemaTypeInfo: TypeInfo public val tagName: String public fun getAttribute(arg1: String?): String = js.noImpl - public fun setAttribute(arg1: String?, arg2: String?): Unit = js.noImpl - public fun removeAttribute(arg1: String?): Unit = js.noImpl public fun getElementsByTagName(arg1: String?): NodeList = js.noImpl public fun getElementsByTagNameNS(arg1: String?, arg2: String?): NodeList = js.noImpl - public fun getAttributeNode(arg1: String?): Attr = js.noImpl - public fun removeAttributeNode(arg1: Attr): Attr = js.noImpl public fun getAttributeNS(arg1: String?, arg2: String?): String = js.noImpl - public fun setAttributeNS(arg1: String?, arg2: String?, arg3: String?): Unit = js.noImpl - public fun removeAttributeNS(arg1: String?, arg2: String?): Unit = js.noImpl + public fun getAttributeNode(arg1: String?): Attr = js.noImpl public fun getAttributeNodeNS(arg1: String?, arg2: String?): Attr = js.noImpl public fun hasAttribute(arg1: String?): Boolean = js.noImpl public fun hasAttributeNS(arg1: String?, arg2: String?): Boolean = js.noImpl + public fun removeAttribute(arg1: String?): Unit = js.noImpl + public fun removeAttributeNS(arg1: String?, arg2: String?): Unit = js.noImpl + public fun removeAttributeNode(arg1: Attr): Attr = js.noImpl + public fun setAttribute(arg1: String?, arg2: String?): Unit = js.noImpl + public fun setAttributeNS(arg1: String?, arg2: String?, arg3: String?): Unit = js.noImpl public fun setIdAttribute(arg1: String?, arg2: Boolean): Unit = js.noImpl public fun setIdAttributeNS(arg1: String?, arg2: String?, arg3: Boolean): Unit = js.noImpl public fun setIdAttributeNode(arg1: Attr, arg2: Boolean): Unit = js.noImpl @@ -180,8 +180,8 @@ native public trait NamedNodeMap { public val length: Int public fun item(arg1: Int): Node = js.noImpl public fun getNamedItem(arg1: String?): Node = js.noImpl - public fun removeNamedItem(arg1: String?): Node = js.noImpl public fun getNamedItemNS(arg1: String?, arg2: String?): Node = js.noImpl + public fun removeNamedItem(arg1: String?): Node = js.noImpl public fun removeNamedItemNS(arg1: String?, arg2: String?): Node = js.noImpl public fun setNamedItem(arg1: Node): Node = js.noImpl public fun setNamedItemNS(arg1: Node): Node = js.noImpl @@ -204,24 +204,24 @@ native public trait Node { public var prefix: String public val previousSibling: Node public var textContent: String - public fun normalize(): Unit = js.noImpl public fun isSupported(arg1: String?, arg2: String?): Boolean = js.noImpl - public fun getUserData(arg1: String?): Any = js.noImpl - public fun setUserData(arg1: String?, arg2: Any, arg3: UserDataHandler): Any = js.noImpl - public fun getFeature(arg1: String?, arg2: String?): Any = js.noImpl - public fun hasAttributes(): Boolean = js.noImpl - public fun removeChild(arg1: Node): Node = js.noImpl - public fun replaceChild(arg1: Node, arg2: Node): Node = js.noImpl - public fun insertBefore(arg1: Node, arg2: Node): Node = js.noImpl + public fun normalize(): Unit = js.noImpl public fun appendChild(arg1: Node): Node = js.noImpl - public fun hasChildNodes(): Boolean = js.noImpl public fun cloneNode(arg1: Boolean): Node = js.noImpl public fun compareDocumentPosition(arg1: Node): Short = js.noImpl - public fun isSameNode(arg1: Node): Boolean = js.noImpl - public fun lookupPrefix(arg1: String?): String = js.noImpl + public fun getFeature(arg1: String?, arg2: String?): Any = js.noImpl + public fun getUserData(arg1: String?): Any = js.noImpl + public fun hasAttributes(): Boolean = js.noImpl + public fun hasChildNodes(): Boolean = js.noImpl + public fun insertBefore(arg1: Node, arg2: Node): Node = js.noImpl public fun isDefaultNamespace(arg1: String?): Boolean = js.noImpl - public fun lookupNamespaceURI(arg1: String?): String = js.noImpl public fun isEqualNode(arg1: Node): Boolean = js.noImpl + public fun isSameNode(arg1: Node): Boolean = js.noImpl + public fun lookupNamespaceURI(arg1: String?): String = js.noImpl + public fun lookupPrefix(arg1: String?): String = js.noImpl + public fun removeChild(arg1: Node): Node = js.noImpl + public fun replaceChild(arg1: Node, arg2: Node): Node = js.noImpl + public fun setUserData(arg1: String?, arg2: Any, arg3: UserDataHandler): Any = js.noImpl public class object { public val ELEMENT_NODE: Short = 1 @@ -262,9 +262,9 @@ native public trait ProcessingInstruction: Node { native public trait Text: CharacterData { public val wholeText: String - public fun splitText(arg1: Int): Text = js.noImpl public fun isElementContentWhitespace(): Boolean = js.noImpl public fun replaceWholeText(arg1: String?): Text = js.noImpl + public fun splitText(arg1: Int): Text = js.noImpl } native public trait TypeInfo { diff --git a/js/js.libraries/src/core/domEvents.kt b/js/js.libraries/src/core/domEvents.kt index eade339ff46..c761b2ed15e 100644 --- a/js/js.libraries/src/core/domEvents.kt +++ b/js/js.libraries/src/core/domEvents.kt @@ -6,7 +6,7 @@ import org.w3c.dom.views.* // -// NOTE THIS FILE IS AUTO-GENERATED by the GeneratedJavaScriptStubs.kt +// NOTE THIS FILE IS AUTO-GENERATED by the GenerateJavaScriptStubs.kt // See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib // @@ -27,9 +27,9 @@ native public trait Event { public val eventPhase: Short public val target: EventTarget public val timeStamp: Long - public fun stopPropagation(): Unit = js.noImpl - public fun preventDefault(): Unit = js.noImpl public fun initEvent(arg1: String?, arg2: Boolean, arg3: Boolean): Unit = js.noImpl + public fun preventDefault(): Unit = js.noImpl + public fun stopPropagation(): Unit = js.noImpl public class object { public val CAPTURING_PHASE: Short = 1 @@ -39,8 +39,8 @@ native public trait Event { } native public trait EventTarget { - public fun dispatchEvent(arg1: Event?): Boolean = js.noImpl public fun addEventListener(arg1: String?, arg2: EventListener, arg3: Boolean): Unit = js.noImpl + public fun dispatchEvent(arg1: Event?): Boolean = js.noImpl public fun removeEventListener(arg1: String?, arg2: EventListener, arg3: Boolean): Unit = js.noImpl } diff --git a/libraries/stdlib/test/org/jetbrains/kotlin/tools/GenerateJavaScriptStubs.kt b/libraries/stdlib/test/org/jetbrains/kotlin/tools/GenerateJavaScriptStubs.kt index 693c12ad4c4..f0fe2e1586e 100644 --- a/libraries/stdlib/test/org/jetbrains/kotlin/tools/GenerateJavaScriptStubs.kt +++ b/libraries/stdlib/test/org/jetbrains/kotlin/tools/GenerateJavaScriptStubs.kt @@ -63,7 +63,7 @@ package $packageName $imports // -// NOTE THIS FILE IS AUTO-GENERATED by the GeneratedJavaScriptStubs.kt +// NOTE THIS FILE IS AUTO-GENERATED by the GenerateJavaScriptStubs.kt // See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib //