3e6b8717fe
Fixes https://github.com/dart-lang/sdk/issues/31029 R=vsm@google.com Change-Id: I757538eec1ebcf42204e7de0807a48a4757f3faf Reviewed-on: https://dart-review.googlesource.com/49740 Reviewed-by: Vijay Menon <vsm@google.com> Commit-Queue: Terry Lucas <terry@google.com>
25 lines
741 B
Plaintext
25 lines
741 B
Plaintext
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// WARNING: Do not edit - generated code.
|
|
|
|
part of $LIBRARYNAME;
|
|
|
|
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
|
|
|
|
void addEventListener(String type, EventListener listener,
|
|
[bool useCapture]) {
|
|
// Messages posted to ports are initially paused, allowing listeners to be
|
|
// setup, start() needs to be explicitly invoked to begin handling messages.
|
|
if (type == 'message') {
|
|
_start();
|
|
}
|
|
|
|
super.addEventListener(type, listener, useCapture);
|
|
}
|
|
|
|
$!MEMBERS
|
|
}
|
|
|