| Index: client/dom/generated/src/interface/TouchEvent.dart
|
| diff --git a/client/dom/generated/src/interface/TouchEvent.dart b/client/dom/generated/src/interface/TouchEvent.dart
|
| index 632d50bdef234ecd2b66f10cfc5a03a625c01c86..4fe271b9a103b5b6ac36d3a97ed7b220d4b06976 100644
|
| --- a/client/dom/generated/src/interface/TouchEvent.dart
|
| +++ b/client/dom/generated/src/interface/TouchEvent.dart
|
| @@ -6,19 +6,19 @@
|
|
|
| interface TouchEvent extends UIEvent {
|
|
|
| - bool get altKey();
|
| + final bool altKey;
|
|
|
| - TouchList get changedTouches();
|
| + final TouchList changedTouches;
|
|
|
| - bool get ctrlKey();
|
| + final bool ctrlKey;
|
|
|
| - bool get metaKey();
|
| + final bool metaKey;
|
|
|
| - bool get shiftKey();
|
| + final bool shiftKey;
|
|
|
| - TouchList get targetTouches();
|
| + final TouchList targetTouches;
|
|
|
| - TouchList get touches();
|
| + final TouchList touches;
|
|
|
| void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList changedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
| }
|
|
|