| Index: client/dom/generated/src/wrapping/_MouseEventWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_MouseEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MouseEventWrappingImplementation.dart
|
| index ba24321b8181f8379eca6fb0773a32838f52dfaf..a414d566e3d5e972afe832b916b60c7168c7ae76 100644
|
| --- a/client/dom/generated/src/wrapping/_MouseEventWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_MouseEventWrappingImplementation.dart
|
| @@ -11,56 +11,56 @@ class _MouseEventWrappingImplementation extends _UIEventWrappingImplementation i
|
| return new _MouseEventWrappingImplementation();
|
| }
|
|
|
| - bool get altKey() { return _get__MouseEvent_altKey(this); }
|
| - static bool _get__MouseEvent_altKey(var _this) native;
|
| + bool get altKey() { return _get_altKey(this); }
|
| + static bool _get_altKey(var _this) native;
|
|
|
| - int get button() { return _get__MouseEvent_button(this); }
|
| - static int _get__MouseEvent_button(var _this) native;
|
| + int get button() { return _get_button(this); }
|
| + static int _get_button(var _this) native;
|
|
|
| - int get clientX() { return _get__MouseEvent_clientX(this); }
|
| - static int _get__MouseEvent_clientX(var _this) native;
|
| + int get clientX() { return _get_clientX(this); }
|
| + static int _get_clientX(var _this) native;
|
|
|
| - int get clientY() { return _get__MouseEvent_clientY(this); }
|
| - static int _get__MouseEvent_clientY(var _this) native;
|
| + int get clientY() { return _get_clientY(this); }
|
| + static int _get_clientY(var _this) native;
|
|
|
| - bool get ctrlKey() { return _get__MouseEvent_ctrlKey(this); }
|
| - static bool _get__MouseEvent_ctrlKey(var _this) native;
|
| + bool get ctrlKey() { return _get_ctrlKey(this); }
|
| + static bool _get_ctrlKey(var _this) native;
|
|
|
| - Clipboard get dataTransfer() { return _get__MouseEvent_dataTransfer(this); }
|
| - static Clipboard _get__MouseEvent_dataTransfer(var _this) native;
|
| + Clipboard get dataTransfer() { return _get_dataTransfer(this); }
|
| + static Clipboard _get_dataTransfer(var _this) native;
|
|
|
| - Node get fromElement() { return _get__MouseEvent_fromElement(this); }
|
| - static Node _get__MouseEvent_fromElement(var _this) native;
|
| + Node get fromElement() { return _get_fromElement(this); }
|
| + static Node _get_fromElement(var _this) native;
|
|
|
| - bool get metaKey() { return _get__MouseEvent_metaKey(this); }
|
| - static bool _get__MouseEvent_metaKey(var _this) native;
|
| + bool get metaKey() { return _get_metaKey(this); }
|
| + static bool _get_metaKey(var _this) native;
|
|
|
| - int get offsetX() { return _get__MouseEvent_offsetX(this); }
|
| - static int _get__MouseEvent_offsetX(var _this) native;
|
| + int get offsetX() { return _get_offsetX(this); }
|
| + static int _get_offsetX(var _this) native;
|
|
|
| - int get offsetY() { return _get__MouseEvent_offsetY(this); }
|
| - static int _get__MouseEvent_offsetY(var _this) native;
|
| + int get offsetY() { return _get_offsetY(this); }
|
| + static int _get_offsetY(var _this) native;
|
|
|
| - EventTarget get relatedTarget() { return _get__MouseEvent_relatedTarget(this); }
|
| - static EventTarget _get__MouseEvent_relatedTarget(var _this) native;
|
| + EventTarget get relatedTarget() { return _get_relatedTarget(this); }
|
| + static EventTarget _get_relatedTarget(var _this) native;
|
|
|
| - int get screenX() { return _get__MouseEvent_screenX(this); }
|
| - static int _get__MouseEvent_screenX(var _this) native;
|
| + int get screenX() { return _get_screenX(this); }
|
| + static int _get_screenX(var _this) native;
|
|
|
| - int get screenY() { return _get__MouseEvent_screenY(this); }
|
| - static int _get__MouseEvent_screenY(var _this) native;
|
| + int get screenY() { return _get_screenY(this); }
|
| + static int _get_screenY(var _this) native;
|
|
|
| - bool get shiftKey() { return _get__MouseEvent_shiftKey(this); }
|
| - static bool _get__MouseEvent_shiftKey(var _this) native;
|
| + bool get shiftKey() { return _get_shiftKey(this); }
|
| + static bool _get_shiftKey(var _this) native;
|
|
|
| - Node get toElement() { return _get__MouseEvent_toElement(this); }
|
| - static Node _get__MouseEvent_toElement(var _this) native;
|
| + Node get toElement() { return _get_toElement(this); }
|
| + static Node _get_toElement(var _this) native;
|
|
|
| - int get x() { return _get__MouseEvent_x(this); }
|
| - static int _get__MouseEvent_x(var _this) native;
|
| + int get x() { return _get_x(this); }
|
| + static int _get_x(var _this) native;
|
|
|
| - int get y() { return _get__MouseEvent_y(this); }
|
| - static int _get__MouseEvent_y(var _this) native;
|
| + int get y() { return _get_y(this); }
|
| + static int _get_y(var _this) native;
|
|
|
| void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarget) {
|
| _initMouseEvent(this, type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget);
|
|
|