| Index: lib/html/templates/html/interface/interface_MouseEvent.darttemplate
|
| diff --git a/lib/html/templates/html/interface/interface_MouseEvent.darttemplate b/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
|
| index 640e396c751b9f88ac2c9ec68526e5619088aa00..e5629e3f14c618320a7ab1c96d5b4cb67f1e343b 100644
|
| --- a/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
|
| +++ b/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
|
| @@ -5,11 +5,16 @@
|
| // WARNING: Do not edit - generated code.
|
|
|
| $!COMMENT
|
| -interface $ID$EXTENDS default _$(ID)FactoryProvider {
|
| +abstract class $ID$EXTENDS {
|
|
|
| - $ID(String type, Window view, int detail, int screenX, int screenY,
|
| + factory $ID(String type, Window view, int detail, int screenX, int screenY,
|
| int clientX, int clientY, int button, [bool canBubble, bool cancelable,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
|
| - EventTarget relatedTarget]);
|
| + EventTarget relatedTarget]) =>
|
| + _$(ID)FactoryProvider.create$ID(
|
| + type, view, detail, screenX, screenY,
|
| + clientX, clientY, button, canBubble, cancelable,
|
| + ctrlKey, altKey, shiftKey, metaKey,
|
| + relatedTarget);
|
|
|
| $!MEMBERS}
|
|
|