1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| "use strict";
|
| const UIEventImpl = require("./UIEvent-impl").implementation;
| const CompositionEventInit = require("../generated/CompositionEventInit");
|
| class CompositionEventImpl extends UIEventImpl {
| initCompositionEvent(type, bubbles, cancelable, view, data) {
| if (this._dispatchFlag) {
| return;
| }
|
| this.initUIEvent(type, bubbles, cancelable, view, 0);
| this.data = data;
| }
| }
| CompositionEventImpl.defaultInit = CompositionEventInit.convert(undefined);
|
| module.exports = {
| implementation: CompositionEventImpl
| };
|
|