mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-21 05:24:45 +00:00
29 lines
902 B
JavaScript
29 lines
902 B
JavaScript
"use strict";
|
|
|
|
const { mixin } = require("../../utils");
|
|
const EventModifierMixinImpl = require("./EventModifierMixin-impl").implementation;
|
|
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
|
|
const KeyboardEventInit = require("../generated/KeyboardEventInit");
|
|
|
|
class KeyboardEventImpl extends UIEventImpl {
|
|
initKeyboardEvent(type, bubbles, cancelable, view, key, location, ctrlKey, altKey, shiftKey, metaKey) {
|
|
if (this._dispatchFlag) {
|
|
return;
|
|
}
|
|
|
|
this.initUIEvent(type, bubbles, cancelable, view, 0);
|
|
this.key = key;
|
|
this.location = location;
|
|
this.ctrlKey = ctrlKey;
|
|
this.altKey = altKey;
|
|
this.shiftKey = shiftKey;
|
|
this.metaKey = metaKey;
|
|
}
|
|
}
|
|
mixin(KeyboardEventImpl.prototype, EventModifierMixinImpl.prototype);
|
|
KeyboardEventImpl.defaultInit = KeyboardEventInit.convert(undefined);
|
|
|
|
module.exports = {
|
|
implementation: KeyboardEventImpl
|
|
};
|