| Index: client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
|
| index bf0a1fa6fdc5eb0fcc4d8d1d1f7c228f700ad6f7..6b673f632abecc5b9a21d3db6708a5c6bc1c5da1 100644
|
| --- a/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
|
| @@ -11,26 +11,26 @@ class _KeyboardEventWrappingImplementation extends _UIEventWrappingImplementatio
|
| return new _KeyboardEventWrappingImplementation();
|
| }
|
|
|
| - bool get altGraphKey() { return _get__KeyboardEvent_altGraphKey(this); }
|
| - static bool _get__KeyboardEvent_altGraphKey(var _this) native;
|
| + bool get altGraphKey() { return _get_altGraphKey(this); }
|
| + static bool _get_altGraphKey(var _this) native;
|
|
|
| - bool get altKey() { return _get__KeyboardEvent_altKey(this); }
|
| - static bool _get__KeyboardEvent_altKey(var _this) native;
|
| + bool get altKey() { return _get_altKey(this); }
|
| + static bool _get_altKey(var _this) native;
|
|
|
| - bool get ctrlKey() { return _get__KeyboardEvent_ctrlKey(this); }
|
| - static bool _get__KeyboardEvent_ctrlKey(var _this) native;
|
| + bool get ctrlKey() { return _get_ctrlKey(this); }
|
| + static bool _get_ctrlKey(var _this) native;
|
|
|
| - String get keyIdentifier() { return _get__KeyboardEvent_keyIdentifier(this); }
|
| - static String _get__KeyboardEvent_keyIdentifier(var _this) native;
|
| + String get keyIdentifier() { return _get_keyIdentifier(this); }
|
| + static String _get_keyIdentifier(var _this) native;
|
|
|
| - int get keyLocation() { return _get__KeyboardEvent_keyLocation(this); }
|
| - static int _get__KeyboardEvent_keyLocation(var _this) native;
|
| + int get keyLocation() { return _get_keyLocation(this); }
|
| + static int _get_keyLocation(var _this) native;
|
|
|
| - bool get metaKey() { return _get__KeyboardEvent_metaKey(this); }
|
| - static bool _get__KeyboardEvent_metaKey(var _this) native;
|
| + bool get metaKey() { return _get_metaKey(this); }
|
| + static bool _get_metaKey(var _this) native;
|
|
|
| - bool get shiftKey() { return _get__KeyboardEvent_shiftKey(this); }
|
| - static bool _get__KeyboardEvent_shiftKey(var _this) native;
|
| + bool get shiftKey() { return _get_shiftKey(this); }
|
| + static bool _get_shiftKey(var _this) native;
|
|
|
| void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) {
|
| _initKeyboardEvent(this, type, canBubble, cancelable, view, keyIdentifier, keyLocation, ctrlKey, altKey, shiftKey, metaKey, altGraphKey);
|
|
|