KLIB: add EmptyPackageFragment's to fix ModuleDescritor.getSubPackagesOf

This commit is contained in:
Anton Bannykh
2020-06-15 17:24:24 +03:00
committed by Anton Bannykh
parent d2c9fc41f1
commit e45cd02b01
43 changed files with 35028 additions and 17506 deletions
@@ -0,0 +1,58 @@
@kotlin.internal.InlineOnly
public inline fun PointerEventInit(pointerId: kotlin.Int? = ..., width: kotlin.Double? = ..., height: kotlin.Double? = ..., pressure: kotlin.Float? = ..., tangentialPressure: kotlin.Float? = ..., tiltX: kotlin.Int? = ..., tiltY: kotlin.Int? = ..., twist: kotlin.Int? = ..., pointerType: kotlin.String? = ..., isPrimary: kotlin.Boolean? = ..., screenX: kotlin.Int? = ..., screenY: kotlin.Int? = ..., clientX: kotlin.Int? = ..., clientY: kotlin.Int? = ..., button: kotlin.Short? = ..., buttons: kotlin.Short? = ..., relatedTarget: org.w3c.dom.events.EventTarget? = ..., region: kotlin.String? = ..., ctrlKey: kotlin.Boolean? = ..., shiftKey: kotlin.Boolean? = ..., altKey: kotlin.Boolean? = ..., metaKey: kotlin.Boolean? = ..., modifierAltGraph: kotlin.Boolean? = ..., modifierCapsLock: kotlin.Boolean? = ..., modifierFn: kotlin.Boolean? = ..., modifierFnLock: kotlin.Boolean? = ..., modifierHyper: kotlin.Boolean? = ..., modifierNumLock: kotlin.Boolean? = ..., modifierScrollLock: kotlin.Boolean? = ..., modifierSuper: kotlin.Boolean? = ..., modifierSymbol: kotlin.Boolean? = ..., modifierSymbolLock: kotlin.Boolean? = ..., view: org.w3c.dom.Window? = ..., detail: kotlin.Int? = ..., bubbles: kotlin.Boolean? = ..., cancelable: kotlin.Boolean? = ..., composed: kotlin.Boolean? = ...): org.w3c.dom.pointerevents.PointerEventInit
public open external class PointerEvent : org.w3c.dom.events.MouseEvent {
public constructor PointerEvent(type: kotlin.String, eventInitDict: org.w3c.dom.pointerevents.PointerEventInit = ...)
public open val height: kotlin.Double { get; }
public open val isPrimary: kotlin.Boolean { get; }
public open val pointerId: kotlin.Int { get; }
public open val pointerType: kotlin.String { get; }
public open val pressure: kotlin.Float { get; }
public open val tangentialPressure: kotlin.Float { get; }
public open val tiltX: kotlin.Int { get; }
public open val tiltY: kotlin.Int { get; }
public open val twist: kotlin.Int { get; }
public open val width: kotlin.Double { get; }
public companion object of PointerEvent {
public final val AT_TARGET: kotlin.Short { get; }
public final val BUBBLING_PHASE: kotlin.Short { get; }
public final val CAPTURING_PHASE: kotlin.Short { get; }
public final val NONE: kotlin.Short { get; }
}
}
public external interface PointerEventInit : org.w3c.dom.events.MouseEventInit {
public open var height: kotlin.Double? { get; set; }
public open var isPrimary: kotlin.Boolean? { get; set; }
public open var pointerId: kotlin.Int? { get; set; }
public open var pointerType: kotlin.String? { get; set; }
public open var pressure: kotlin.Float? { get; set; }
public open var tangentialPressure: kotlin.Float? { get; set; }
public open var tiltX: kotlin.Int? { get; set; }
public open var tiltY: kotlin.Int? { get; set; }
public open var twist: kotlin.Int? { get; set; }
public open var width: kotlin.Double? { get; set; }
}