8fedfc7f8c
R=kevmoo@google.com,vsm@google.com Fixes #32304 Change-Id: Ia2c8f99f0125c4d4bd0f95a792ff2af8a58e3599 Reviewed-on: https://dart-review.googlesource.com/60400 Commit-Queue: Terry Lucas <terry@google.com> Reviewed-by: Kevin Moore <kevmoo@google.com>
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
// Copyright (c) 2012, 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 {
|
|
@Creates('Null') // Set from Dart code; does not instantiate a native type.
|
|
var _dartDetail;
|
|
|
|
factory $CLASSNAME(String type,
|
|
{bool canBubble: true, bool cancelable: true, Object detail}) {
|
|
|
|
final CustomEvent e = document._createEvent('CustomEvent');
|
|
|
|
e._dartDetail = detail;
|
|
|
|
// Only try setting the detail if it's one of these types to avoid
|
|
// first-chance exceptions. Can expand this list in the future as needed.
|
|
if (detail is List || detail is Map || detail is String || detail is num) {
|
|
try {
|
|
detail = convertDartToNative_SerializedScriptValue(detail);
|
|
e._initCustomEvent(type, canBubble, cancelable, detail);
|
|
} catch(_) {
|
|
e._initCustomEvent(type, canBubble, cancelable, null);
|
|
}
|
|
} else {
|
|
e._initCustomEvent(type, canBubble, cancelable, null);
|
|
}
|
|
|
|
return e;
|
|
}
|
|
|
|
get detail {
|
|
if (_dartDetail != null) {
|
|
return _dartDetail;
|
|
}
|
|
return _detail;
|
|
}
|
|
$!MEMBERS
|
|
}
|