Update generated code to move "type" member into its place after it was demoted from keyword.

This commit is contained in:
Ilya Ryzhenkov
2014-11-05 18:48:14 +03:00
parent 2e154b73de
commit ad1a2c4000
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -86,12 +86,12 @@ native public trait DOMConfiguration {
}
native public trait DOMError {
public val type: String
public val location: DOMLocator
public val message: String
public val relatedData: Any
public val relatedException: Any
public val severity: Short
public val type: String
public class object {
public val SEVERITY_ERROR: Short = 2
+1 -1
View File
@@ -18,13 +18,13 @@ native public trait DocumentEvent {
}
native public trait Event {
public val type: String
public val bubbles: Boolean
public val cancelable: Boolean
public val currentTarget: EventTarget
public val eventPhase: Short
public val target: EventTarget
public val timeStamp: Long
public val type: String
public fun initEvent(arg1: String?, arg2: Boolean, arg3: Boolean): Unit = noImpl
public fun preventDefault(): Unit = noImpl
public fun stopPropagation(): Unit = noImpl