Update generated code to move "type" member into its place after it was demoted from keyword.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user