| Index: src/site/articles/trydart/examples/7-piratebadge_json/piratebadge.dart.precompiled.js
|
| diff --git a/src/site/docs/tutorials/fetchdata/examples/portmanteaux_simple/portmanteaux_simple.dart.precompiled.js b/src/site/articles/trydart/examples/7-piratebadge_json/piratebadge.dart.precompiled.js
|
| similarity index 92%
|
| copy from src/site/docs/tutorials/fetchdata/examples/portmanteaux_simple/portmanteaux_simple.dart.precompiled.js
|
| copy to src/site/articles/trydart/examples/7-piratebadge_json/piratebadge.dart.precompiled.js
|
| index d3ed07055daf83c7b19cbdb887bdea08dede251b..ca87c1dd5462ac72b59ab201faaa3f4038095275 100644
|
| --- a/src/site/docs/tutorials/fetchdata/examples/portmanteaux_simple/portmanteaux_simple.dart.precompiled.js
|
| +++ b/src/site/articles/trydart/examples/7-piratebadge_json/piratebadge.dart.precompiled.js
|
| @@ -1826,6 +1826,25 @@ convertDartClosureToJS: function(closure, arity) {
|
| return $function;
|
| },
|
|
|
| +propertyTypeCastError: function(value, property) {
|
| + var actualType, t1, expectedType;
|
| + actualType = H.Primitives_objectTypeName(value);
|
| + t1 = J.getInterceptor$asx(property);
|
| + expectedType = t1.substring$2(property, 3, t1.get$length(property));
|
| + throw H.wrapException(new H.CastErrorImplementation("CastError: Casting value of type " + actualType + " to incompatible type " + expectedType));
|
| +},
|
| +
|
| +interceptedTypeCast: function(value, property) {
|
| + var t1;
|
| + if (value != null)
|
| + t1 = typeof value === "object" && J.getInterceptor(value)[property];
|
| + else
|
| + t1 = true;
|
| + if (t1)
|
| + return value;
|
| + H.propertyTypeCastError(value, property);
|
| +},
|
| +
|
| throwCyclicInit: function(staticName) {
|
| throw H.wrapException(new P.CyclicInitializationError("Cyclic initialization for static " + H.S(staticName)));
|
| },
|
| @@ -2558,6 +2577,13 @@ BoundClosure: {"": "Closure;_self,__js_helper$_target,_receiver,__js_helper$_nam
|
| $isBoundClosure: true
|
| },
|
|
|
| +CastErrorImplementation: {"": "Error;message",
|
| + toString$0: function(_) {
|
| + return this.message;
|
| + },
|
| + $isError: true
|
| +},
|
| +
|
| applyExperimentalFixup_newGetTagDartFunction: {"": "Closure;newGetTagJSFunction_0",
|
| call$1: function(object) {
|
| return this.newGetTagJSFunction_0(object);
|
| @@ -2780,32 +2806,6 @@ MappedListIterable: {"": "ListIterable;_source,_f",
|
| }
|
| },
|
|
|
| -WhereIterable: {"": "IterableBase;_iterable,_f",
|
| - get$iterator: function(_) {
|
| - var t1 = J.get$iterator$ax(this._iterable);
|
| - t1 = new H.WhereIterator(t1, this._f);
|
| - H.setRuntimeTypeInfo(t1, [H.getRuntimeTypeArgument(this, "WhereIterable", 0)]);
|
| - return t1;
|
| - },
|
| - $asIterableBase: null
|
| -},
|
| -
|
| -WhereIterator: {"": "Iterator;_iterator,_f",
|
| - _f$1: function(arg0) {
|
| - return this._f.call$1(arg0);
|
| - },
|
| - moveNext$0: function() {
|
| - for (var t1 = this._iterator; t1.moveNext$0();)
|
| - if (this._f$1(t1.get$current()) === true)
|
| - return true;
|
| - return false;
|
| - },
|
| - get$current: function() {
|
| - return this._iterator.get$current();
|
| - },
|
| - $asIterator: null
|
| -},
|
| -
|
| FixedLengthListMixin: {"": "Object;"}}],
|
| ["dart.async", "dart:async", , P, {
|
| _attachStackTrace: function(o, st) {
|
| @@ -4819,8 +4819,6 @@ IterableBase: {"": "Object;",
|
| }
|
| },
|
|
|
| -ListBase: {"": "Object+ListMixin;", $isList: true, $asList: null},
|
| -
|
| ListMixin: {"": "Object;",
|
| get$iterator: function(receiver) {
|
| return new H.ListIterator(receiver, this.get$length(receiver), 0, null);
|
| @@ -4832,12 +4830,12 @@ ListMixin: {"": "Object;",
|
| var $length, i;
|
| if (typeof receiver !== "string" && (typeof receiver !== "object" || receiver === null || receiver.constructor !== Array && !H.isJsIndexable(receiver, receiver[init.dispatchPropertyName])))
|
| return this.forEach$1$bailout(1, receiver, action);
|
| - $length = receiver.length;
|
| + $length = C.JS_CONST_ZYJ(receiver);
|
| for (i = 0; i < $length; ++i) {
|
| - if (i >= receiver.length)
|
| + if (i >= C.JS_CONST_ZYJ(receiver))
|
| throw H.ioore(receiver, i);
|
| action.call$1(receiver[i]);
|
| - if ($length !== receiver.length)
|
| + if ($length !== C.JS_CONST_ZYJ(receiver))
|
| throw H.wrapException(new P.ConcurrentModificationError(receiver));
|
| }
|
| },
|
| @@ -4850,57 +4848,11 @@ ListMixin: {"": "Object;",
|
| throw H.wrapException(new P.ConcurrentModificationError(receiver));
|
| }
|
| },
|
| - where$1: function(receiver, test) {
|
| - var t1 = new H.WhereIterable(receiver, test);
|
| - H.setRuntimeTypeInfo(t1, [H.getRuntimeTypeArgument(receiver, "ListMixin", 0)]);
|
| - return t1;
|
| - },
|
| map$1: function(receiver, f) {
|
| var t1 = new H.MappedListIterable(receiver, f);
|
| H.setRuntimeTypeInfo(t1, [null, null]);
|
| return t1;
|
| },
|
| - toList$1$growable: function(receiver, growable) {
|
| - var result, t1, t2, i, t3;
|
| - if (typeof receiver !== "string" && (typeof receiver !== "object" || receiver === null || receiver.constructor !== Array && !H.isJsIndexable(receiver, receiver[init.dispatchPropertyName])))
|
| - return this.toList$1$growable$bailout(1, receiver, growable);
|
| - if (growable) {
|
| - result = P.List_List(null, H.getRuntimeTypeArgument(receiver, "ListMixin", 0));
|
| - H.setRuntimeTypeInfo(result, [H.getRuntimeTypeArgument(receiver, "ListMixin", 0)]);
|
| - C.JSArray_methods.set$length(result, receiver.length);
|
| - } else {
|
| - result = P.List_List(receiver.length, H.getRuntimeTypeArgument(receiver, "ListMixin", 0));
|
| - H.setRuntimeTypeInfo(result, [H.getRuntimeTypeArgument(receiver, "ListMixin", 0)]);
|
| - }
|
| - for (t1 = receiver.length, t2 = result.length, i = 0; i < t1; ++i) {
|
| - t3 = receiver[i];
|
| - if (i >= t2)
|
| - throw H.ioore(result, i);
|
| - result[i] = t3;
|
| - }
|
| - return result;
|
| - },
|
| - toList$1$growable$bailout: function(state0, receiver, growable) {
|
| - var result, i, t1;
|
| - if (growable) {
|
| - result = P.List_List(null, H.getRuntimeTypeArgument(receiver, "ListMixin", 0));
|
| - H.setRuntimeTypeInfo(result, [H.getRuntimeTypeArgument(receiver, "ListMixin", 0)]);
|
| - C.JSArray_methods.set$length(result, this.get$length(receiver));
|
| - } else {
|
| - result = P.List_List(this.get$length(receiver), H.getRuntimeTypeArgument(receiver, "ListMixin", 0));
|
| - H.setRuntimeTypeInfo(result, [H.getRuntimeTypeArgument(receiver, "ListMixin", 0)]);
|
| - }
|
| - for (i = 0; i < this.get$length(receiver); ++i) {
|
| - t1 = this.$index(receiver, i);
|
| - if (i >= result.length)
|
| - throw H.ioore(result, i);
|
| - result[i] = t1;
|
| - }
|
| - return result;
|
| - },
|
| - toList$0: function($receiver) {
|
| - return this.toList$1$growable($receiver, true);
|
| - },
|
| toString$0: function(receiver) {
|
| var result, i, t1;
|
| for (i = 0; i < $.get$ListMixin__toStringList().length; ++i) {
|
| @@ -5351,6 +5303,8 @@ CyclicInitializationError: {"": "Error;variableName",
|
| }
|
| },
|
|
|
| +Exception: {"": "Object;", $isException: true},
|
| +
|
| _ExceptionImplementation: {"": "Object;message",
|
| toString$0: function(_) {
|
| var t1 = this.message;
|
| @@ -5510,39 +5464,20 @@ _convertNativeToDart_Window: function(win) {
|
| return W._DOMWindowCrossFrame__createSafe(win);
|
| },
|
|
|
| -_ChildrenElementList: {"": "ListBase;_element,_childElements",
|
| - get$length: function(_) {
|
| - return this._childElements.length;
|
| - },
|
| - $index: function(_, index) {
|
| - var t1 = this._childElements;
|
| - if (index >>> 0 !== index || index >= t1.length)
|
| - throw H.ioore(t1, index);
|
| - return t1[index];
|
| - },
|
| - $indexSet: function(_, index, value) {
|
| - var t1 = this._childElements;
|
| - if (index >>> 0 !== index || index >= t1.length)
|
| - throw H.ioore(t1, index);
|
| - this._element.replaceChild(value, t1[index]);
|
| - },
|
| - add$1: function(_, value) {
|
| - this._element.appendChild(value);
|
| - return value;
|
| - },
|
| - get$iterator: function(_) {
|
| - var t1 = this.toList$0(this);
|
| - return new H.ListIterator(t1, t1.length, 0, null);
|
| - },
|
| - $asList: function() {
|
| - return [W.Element];
|
| - }
|
| +_convertNativeToDart_EventTarget: function(e) {
|
| + var $window, t1;
|
| + if (e == null)
|
| + return;
|
| + if ("setInterval" in e) {
|
| + $window = W._DOMWindowCrossFrame__createSafe(e);
|
| + t1 = J.getInterceptor($window);
|
| + if (typeof $window === "object" && $window !== null && !!t1.$isEventTarget)
|
| + return $window;
|
| + return;
|
| + } else
|
| + return e;
|
| },
|
|
|
| -Interceptor_ListMixin: {"": "Interceptor+ListMixin;", $isList: true, $asList: null},
|
| -
|
| -Interceptor_ListMixin_ImmutableListMixin: {"": "Interceptor_ListMixin+ImmutableListMixin;", $asList: null, $isList: true},
|
| -
|
| HttpRequest_getString_closure: {"": "Closure;",
|
| call$1: function(xhr) {
|
| return J.get$responseText$x(xhr);
|
| @@ -5587,36 +5522,6 @@ HttpRequest_request_closure0: {"": "Closure;completer_3",
|
| }
|
| },
|
|
|
| -_ChildNodeListLazy: {"": "ListBase;_this",
|
| - $indexSet: function(_, index, value) {
|
| - var t1, t2;
|
| - t1 = this._this;
|
| - t2 = t1.childNodes;
|
| - if (index >>> 0 !== index || index >= t2.length)
|
| - throw H.ioore(t2, index);
|
| - t1.replaceChild(value, t2[index]);
|
| - },
|
| - get$iterator: function(_) {
|
| - return C.NodeList_methods.get$iterator(this._this.childNodes);
|
| - },
|
| - get$length: function(_) {
|
| - return this._this.childNodes.length;
|
| - },
|
| - $index: function(_, index) {
|
| - var t1 = this._this.childNodes;
|
| - if (index >>> 0 !== index || index >= t1.length)
|
| - throw H.ioore(t1, index);
|
| - return t1[index];
|
| - },
|
| - $asList: function() {
|
| - return [W.Node];
|
| - }
|
| -},
|
| -
|
| -Interceptor_ListMixin0: {"": "Interceptor+ListMixin;", $isList: true, $asList: null},
|
| -
|
| -Interceptor_ListMixin_ImmutableListMixin0: {"": "Interceptor_ListMixin0+ImmutableListMixin;", $asList: null, $isList: true},
|
| -
|
| _EventStream: {"": "Stream;_target,_eventType,_useCapture",
|
| listen$4$cancelOnError$onDone$onError: function(onData, cancelOnError, onDone, onError) {
|
| var t1 = new W._EventStreamSubscription(0, this._target, this._eventType, W._EventStreamSubscription__wrapZone(onData), this._useCapture);
|
| @@ -5677,42 +5582,11 @@ _EventStreamSubscription__wrapZone: function(callback) {
|
|
|
| EventStreamProvider: {"": "Object;_eventType"},
|
|
|
| -ImmutableListMixin: {"": "Object;",
|
| - get$iterator: function(receiver) {
|
| - return W.FixedSizeListIterator$(receiver);
|
| - },
|
| - $isList: true,
|
| - $asList: null
|
| -},
|
| -
|
| -FixedSizeListIterator: {"": "Object;_array,_html$_length,_html$_position,_html$_current",
|
| - moveNext$0: function() {
|
| - var nextPosition, t1;
|
| - nextPosition = this._html$_position + 1;
|
| - t1 = this._html$_length;
|
| - if (nextPosition < t1) {
|
| - this._html$_current = J.$index$asx(this._array, nextPosition);
|
| - this._html$_position = nextPosition;
|
| - return true;
|
| - }
|
| - this._html$_current = null;
|
| - this._html$_position = t1;
|
| - return false;
|
| - },
|
| - get$current: function() {
|
| - return this._html$_current;
|
| - },
|
| - static: {
|
| -FixedSizeListIterator$: function(array) {
|
| - return new W.FixedSizeListIterator(array, J.get$length$asx(array), -1, null);
|
| -}}
|
| -
|
| -},
|
| -
|
| _DOMWindowCrossFrame: {"": "Object;_window",
|
| get$parent: function(_) {
|
| return W._DOMWindowCrossFrame__createSafe(this._window.parent);
|
| },
|
| + $isEventTarget: true,
|
| static: {
|
| _DOMWindowCrossFrame__createSafe: function(w) {
|
| if (w === window)
|
| @@ -5725,12 +5599,18 @@ _DOMWindowCrossFrame__createSafe: function(w) {
|
|
|
| HtmlElement: {"": "Element;"},
|
|
|
| -AnchorElement: {"": "HtmlElement;",
|
| +AnchorElement: {"": "HtmlElement;target=",
|
| toString$0: function(receiver) {
|
| return receiver.toString();
|
| }
|
| },
|
|
|
| +AreaElement: {"": "HtmlElement;target="},
|
| +
|
| +BaseElement: {"": "HtmlElement;target="},
|
| +
|
| +ButtonElement: {"": "HtmlElement;disabled},value%"},
|
| +
|
| CharacterData: {"": "Node;length="},
|
|
|
| DomException: {"": "Interceptor;",
|
| @@ -5740,16 +5620,17 @@ DomException: {"": "Interceptor;",
|
| },
|
|
|
| Element: {"": "Node;",
|
| - get$children: function(receiver) {
|
| - return new W._ChildrenElementList(receiver, receiver.children);
|
| - },
|
| toString$0: function(receiver) {
|
| return receiver.localName;
|
| - },
|
| - $isElement: true
|
| + }
|
| },
|
|
|
| -Event: {"": "Interceptor;"},
|
| +Event: {"": "Interceptor;",
|
| + get$target: function(receiver) {
|
| + return W._convertNativeToDart_EventTarget(receiver.target);
|
| + },
|
| + $isEvent: true
|
| +},
|
|
|
| EventTarget: {"": "Interceptor;",
|
| $$dom_addEventListener$3: function(receiver, type, listener, useCapture) {
|
| @@ -5757,35 +5638,13 @@ EventTarget: {"": "Interceptor;",
|
| },
|
| $$dom_removeEventListener$3: function(receiver, type, listener, useCapture) {
|
| return receiver.removeEventListener(type, H.convertDartClosureToJS(listener, 1), useCapture);
|
| - }
|
| + },
|
| + $isEventTarget: true
|
| },
|
|
|
| -FormElement: {"": "HtmlElement;length="},
|
| +FieldSetElement: {"": "HtmlElement;disabled}"},
|
|
|
| -HtmlCollection: {"": "Interceptor_ListMixin_ImmutableListMixin;",
|
| - get$length: function(receiver) {
|
| - return receiver.length;
|
| - },
|
| - $index: function(receiver, index) {
|
| - var t1 = receiver.length;
|
| - if (index >>> 0 !== index || index >= t1)
|
| - throw H.wrapException(new P.RangeError("value " + H.S(index) + " not in range 0.." + t1));
|
| - return receiver[index];
|
| - },
|
| - $indexSet: function(receiver, index, value) {
|
| - throw H.wrapException(new P.UnsupportedError("Cannot assign element of immutable List."));
|
| - },
|
| - elementAt$1: function(receiver, index) {
|
| - if (index < 0 || index >= receiver.length)
|
| - throw H.ioore(receiver, index);
|
| - return receiver[index];
|
| - },
|
| - $asList: function() {
|
| - return [W.Node];
|
| - },
|
| - $isList: true,
|
| - $isJavaScriptIndexingBehavior: true
|
| -},
|
| +FormElement: {"": "HtmlElement;length=,target="},
|
|
|
| HttpRequest: {"": "XmlHttpRequestEventTarget;responseText=",
|
| open$5$async$password$user: function(receiver, method, url, async, password, user) {
|
| @@ -5797,60 +5656,44 @@ HttpRequest: {"": "XmlHttpRequestEventTarget;responseText=",
|
| $isHttpRequest: true
|
| },
|
|
|
| -InputElement: {"": "HtmlElement;", $isElement: true, $isNode: true},
|
| +InputElement: {"": "HtmlElement;checked=,disabled},placeholder},value%", $isEventTarget: true, $isCheckboxInputElement: true},
|
| +
|
| +KeygenElement: {"": "HtmlElement;disabled}"},
|
| +
|
| +LIElement: {"": "HtmlElement;value%"},
|
| +
|
| +LinkElement: {"": "HtmlElement;disabled}"},
|
| +
|
| +MeterElement: {"": "HtmlElement;value%"},
|
|
|
| MouseEvent: {"": "UIEvent;", $isMouseEvent: true},
|
|
|
| Node: {"": "EventTarget;parent:parentElement=",
|
| - replaceWith$1: function(receiver, otherNode) {
|
| - var $parent, exception;
|
| - try {
|
| - $parent = receiver.parentNode;
|
| - J._replaceChild$2$x($parent, otherNode, receiver);
|
| - } catch (exception) {
|
| - H.unwrapException(exception);
|
| - }
|
| -
|
| - return receiver;
|
| - },
|
| toString$0: function(receiver) {
|
| var t1 = receiver.nodeValue;
|
| return t1 == null ? J.Interceptor.prototype.toString$0.call(this, receiver) : t1;
|
| - },
|
| - _replaceChild$2: function(receiver, newChild, oldChild) {
|
| - return receiver.replaceChild(newChild, oldChild);
|
| - },
|
| - $isNode: true
|
| + }
|
| },
|
|
|
| -NodeList: {"": "Interceptor_ListMixin_ImmutableListMixin0;",
|
| - get$length: function(receiver) {
|
| - return receiver.length;
|
| - },
|
| - $index: function(receiver, index) {
|
| - var t1 = receiver.length;
|
| - if (index >>> 0 !== index || index >= t1)
|
| - throw H.wrapException(new P.RangeError("value " + H.S(index) + " not in range 0.." + t1));
|
| - return receiver[index];
|
| - },
|
| - $indexSet: function(receiver, index, value) {
|
| - throw H.wrapException(new P.UnsupportedError("Cannot assign element of immutable List."));
|
| - },
|
| - elementAt$1: function(receiver, index) {
|
| - if (index < 0 || index >= receiver.length)
|
| - throw H.ioore(receiver, index);
|
| - return receiver[index];
|
| - },
|
| - $asList: function() {
|
| - return [W.Node];
|
| - },
|
| - $isList: true,
|
| - $isJavaScriptIndexingBehavior: true
|
| -},
|
| +OptGroupElement: {"": "HtmlElement;disabled}"},
|
| +
|
| +OptionElement: {"": "HtmlElement;disabled},value%"},
|
| +
|
| +OutputElement: {"": "HtmlElement;value%"},
|
| +
|
| +ParamElement: {"": "HtmlElement;value%"},
|
| +
|
| +ProcessingInstruction: {"": "CharacterData;target="},
|
| +
|
| +ProgressElement: {"": "HtmlElement;value%"},
|
|
|
| ProgressEvent: {"": "Event;", $isProgressEvent: true},
|
|
|
| -SelectElement: {"": "HtmlElement;length="},
|
| +SelectElement: {"": "HtmlElement;disabled},length=,value%"},
|
| +
|
| +StyleElement: {"": "HtmlElement;disabled}"},
|
| +
|
| +TextAreaElement: {"": "HtmlElement;disabled},placeholder},value%"},
|
|
|
| UIEvent: {"": "Event;"},
|
|
|
| @@ -5860,18 +5703,19 @@ Window: {"": "EventTarget;",
|
| },
|
| toString$0: function(receiver) {
|
| return receiver.toString();
|
| - }
|
| + },
|
| + $isEventTarget: true
|
| },
|
|
|
| XmlHttpRequestEventTarget: {"": "EventTarget;"}}],
|
| ["dart.dom.svg", "dart:svg", , P, {
|
| -SvgElement: {"": "Element;",
|
| - get$children: function(receiver) {
|
| - var t1 = new P.FilteredElementList(receiver, new W._ChildNodeListLazy(receiver));
|
| - H.setRuntimeTypeInfo(t1, [W.Element]);
|
| - return t1;
|
| - }
|
| -}}],
|
| +AElement: {"": "GraphicsElement;target="},
|
| +
|
| +GraphicsElement: {"": "SvgElement;"},
|
| +
|
| +StyleElement0: {"": "SvgElement;disabled}"},
|
| +
|
| +SvgElement: {"": "Element;"}}],
|
| ["dart.isolate", "dart:isolate", , P, {
|
| _Isolate_port: function() {
|
| if ($.lazyPort == null)
|
| @@ -5880,6 +5724,17 @@ _Isolate_port: function() {
|
| },
|
|
|
| ReceivePort: {"": "Object;", $isReceivePort: true}}],
|
| +["dart.math", "dart:math", , P, {
|
| +_Random: {"": "Object;",
|
| + nextInt$1: function(max) {
|
| + var t1 = J.getInterceptor$n(max);
|
| + if (t1.$lt(max, 0))
|
| + throw H.wrapException(new P.ArgumentError("negative max: " + H.S(max)));
|
| + if (t1.$gt(max, 4294967295))
|
| + max = 4294967295;
|
| + return Math.random() * max >>> 0;
|
| + }
|
| +}}],
|
| ["dart.typed_data", "dart:typed_data", , P, {
|
| TypedData_ListMixin: {"": "TypedData+ListMixin;", $isList: true, $asList: null},
|
|
|
| @@ -5935,103 +5790,131 @@ Uint8List: {"": "TypedData_ListMixin_FixedLengthListMixin;",
|
| $isList: true,
|
| $isJavaScriptIndexingBehavior: true
|
| }}],
|
| -["html_common", "dart:html_common", , P, {
|
| -FilteredElementList: {"": "ListBase;_node,_childNodes",
|
| - get$_filtered: function() {
|
| - var t1 = this._childNodes;
|
| - return P.List_List$from(t1.where$1(t1, new P.FilteredElementList__filtered_closure()), true, W.Element);
|
| - },
|
| - forEach$1: function(_, f) {
|
| - H.IterableMixinWorkaround_forEach(this.get$_filtered(), f);
|
| - },
|
| - $indexSet: function(_, index, value) {
|
| - var t1 = this.get$_filtered();
|
| - if (index >>> 0 !== index || index >= t1.length)
|
| - throw H.ioore(t1, index);
|
| - J.replaceWith$1$x(t1[index], value);
|
| - },
|
| - add$1: function(_, value) {
|
| - this._childNodes._this.appendChild(value);
|
| +["piratebadge.dart", "piratebadge.dart", , A, {
|
| +main: function() {
|
| + var t1, t2, t3;
|
| + $.inputNameElement = document.querySelector("#inputName");
|
| + t1 = $.inputNameElement;
|
| + t1.toString;
|
| + t1 = new W._ElementEventStreamImpl(t1, C.EventStreamProvider_change._eventType, false);
|
| + H.setRuntimeTypeInfo(t1, [null]);
|
| + t2 = new W._EventStreamSubscription(0, t1._target, t1._eventType, W._EventStreamSubscription__wrapZone(A.generateBadge$closure), t1._useCapture);
|
| + H.setRuntimeTypeInfo(t2, [H.getRuntimeTypeArgument(t1, "_EventStream", 0)]);
|
| + t2._tryResume$0();
|
| + $.genButtonElement = document.querySelector("#generateButton");
|
| + t2 = $.genButtonElement;
|
| + t2.toString;
|
| + t1 = C.EventStreamProvider_click._eventType;
|
| + t2 = new W._ElementEventStreamImpl(t2, t1, false);
|
| + H.setRuntimeTypeInfo(t2, [null]);
|
| + t3 = new W._EventStreamSubscription(0, t2._target, t2._eventType, W._EventStreamSubscription__wrapZone(A.generateBadge$closure), t2._useCapture);
|
| + H.setRuntimeTypeInfo(t3, [H.getRuntimeTypeArgument(t2, "_EventStream", 0)]);
|
| + t3._tryResume$0();
|
| + t3 = document.querySelector("#useRandomName");
|
| + t3.toString;
|
| + t1 = new W._ElementEventStreamImpl(t3, t1, false);
|
| + H.setRuntimeTypeInfo(t1, [null]);
|
| + t3 = new W._EventStreamSubscription(0, t1._target, t1._eventType, W._EventStreamSubscription__wrapZone(A.useRandomNameClickHandler$closure), t1._useCapture);
|
| + H.setRuntimeTypeInfo(t3, [H.getRuntimeTypeArgument(t1, "_EventStream", 0)]);
|
| + t3._tryResume$0();
|
| + $.captainRadioElement = document.querySelector("#captain");
|
| + $.scallywagRadioElement = document.querySelector("#scallywag");
|
| + A.PirateName_makeRequest();
|
| +},
|
| +
|
| +generateBadge: function($event) {
|
| + if (!$.useRandomName)
|
| + document.querySelector("#badgeName").textContent = A.PirateName$(J.get$value$x($.inputNameElement))._pirateName;
|
| + else if (J.get$checked$x($.scallywagRadioElement) === true)
|
| + document.querySelector("#badgeName").textContent = A.PirateName$scallywag()._pirateName;
|
| + else
|
| + document.querySelector("#badgeName").textContent = A.PirateName$captain()._pirateName;
|
| +},
|
| +
|
| +useRandomNameClickHandler: function(e) {
|
| + var t1, t2;
|
| + t1 = J.get$checked$x(H.interceptedTypeCast(J.get$target$x(e), "$isCheckboxInputElement"));
|
| + t2 = $.genButtonElement;
|
| + if (t1 === true) {
|
| + J.set$disabled$x(t2, false);
|
| + J.set$disabled$x($.captainRadioElement, false);
|
| + J.set$disabled$x($.scallywagRadioElement, false);
|
| + t1 = $.inputNameElement;
|
| + t2 = J.getInterceptor$x(t1);
|
| + t2.set$disabled(t1, true);
|
| + t2.set$value(t1, "");
|
| + t2.set$placeholder(t1, "");
|
| + $.useRandomName = true;
|
| + } else {
|
| + J.set$disabled$x(t2, true);
|
| + J.set$disabled$x($.captainRadioElement, true);
|
| + J.set$disabled$x($.scallywagRadioElement, true);
|
| + t1 = $.inputNameElement;
|
| + t2 = J.getInterceptor$x(t1);
|
| + t2.set$disabled(t1, false);
|
| + t2.set$placeholder(t1, "Your name here");
|
| + $.useRandomName = false;
|
| + }
|
| +},
|
| +
|
| +PirateName: {"": "Object;indexGen,_pirateName",
|
| + toString$0: function(_) {
|
| + return this._pirateName;
|
| },
|
| - get$length: function(_) {
|
| - return this.get$_filtered().length;
|
| + PirateName$1$firstName: function(firstName) {
|
| + this._pirateName = H.S(firstName == null ? J.$index$asx($.get$PirateName_names(), this.indexGen.nextInt$1(J.get$length$asx($.get$PirateName_names()))) : firstName);
|
| },
|
| - $index: function(_, index) {
|
| - var t1 = this.get$_filtered();
|
| - if (index >>> 0 !== index || index >= t1.length)
|
| - throw H.ioore(t1, index);
|
| - return t1[index];
|
| + PirateName$scallywag$0: function() {
|
| + var t1, firstName, appellation;
|
| + t1 = this.indexGen;
|
| + firstName = J.$index$asx($.get$PirateName_names(), t1.nextInt$1(J.get$length$asx($.get$PirateName_names())));
|
| + appellation = J.$index$asx($.get$PirateName_scallywags(), t1.nextInt$1(J.get$length$asx($.get$PirateName_scallywags())));
|
| + this._pirateName = H.S(firstName) + " the " + H.S(appellation);
|
| },
|
| - get$iterator: function(_) {
|
| - var t1 = this.get$_filtered();
|
| - return new H.ListIterator(t1, t1.length, 0, null);
|
| + PirateName$captain$0: function() {
|
| + var t1, firstName, appellation;
|
| + t1 = this.indexGen;
|
| + firstName = J.$index$asx($.get$PirateName_names(), t1.nextInt$1(J.get$length$asx($.get$PirateName_names())));
|
| + appellation = J.$index$asx($.get$PirateName_captains(), t1.nextInt$1(J.get$length$asx($.get$PirateName_captains())));
|
| + this._pirateName = H.S(firstName) + " the " + H.S(appellation);
|
| },
|
| - $asListBase: null,
|
| - $asList: null
|
| + static: {
|
| +"": "PirateName_names,PirateName_captains,PirateName_scallywags",
|
| +PirateName$: function(firstName) {
|
| + var t1 = new A.PirateName(C.C__Random, null);
|
| + t1.PirateName$1$firstName(firstName);
|
| + return t1;
|
| },
|
|
|
| -FilteredElementList__filtered_closure: {"": "Closure;",
|
| - call$1: function(n) {
|
| - var t1 = J.getInterceptor(n);
|
| - return typeof n === "object" && n !== null && !!t1.$isElement;
|
| - }
|
| -}}],
|
| -["portmanteaux_simple.dart", "portmanteaux_simple.dart", , O, {
|
| -main: function() {
|
| - var t1, t2;
|
| - t1 = document.querySelector("#getWords");
|
| - t1.toString;
|
| - t1 = new W._ElementEventStreamImpl(t1, C.EventStreamProvider_click._eventType, false);
|
| - H.setRuntimeTypeInfo(t1, [null]);
|
| - t2 = new W._EventStreamSubscription(0, t1._target, t1._eventType, W._EventStreamSubscription__wrapZone(O.makeRequest$closure), t1._useCapture);
|
| - H.setRuntimeTypeInfo(t2, [H.getRuntimeTypeArgument(t1, "_EventStream", 0)]);
|
| - t2._tryResume$0();
|
| - $.wordList = document.querySelector("#wordList");
|
| +PirateName$captain: function() {
|
| + var t1 = new A.PirateName(C.C__Random, null);
|
| + t1.PirateName$captain$0();
|
| + return t1;
|
| },
|
|
|
| -makeRequest: function(e) {
|
| - W.HttpRequest_getString("portmanteaux_simple.json", null, null).then$1(O.processString$closure).catchError$1(O.handleError$closure);
|
| +PirateName$scallywag: function() {
|
| + var t1 = new A.PirateName(C.C__Random, null);
|
| + t1.PirateName$scallywag$0();
|
| + return t1;
|
| },
|
|
|
| -processString: function(jsonString) {
|
| - var portmanteaux, i, t1, t2;
|
| - portmanteaux = P._parseJson(jsonString, new P.JsonDecoder(null)._reviver);
|
| - if (typeof portmanteaux !== "string" && (typeof portmanteaux !== "object" || portmanteaux === null || portmanteaux.constructor !== Array && !H.isJsIndexable(portmanteaux, portmanteaux[init.dispatchPropertyName])))
|
| - return O.processString$bailout(1, portmanteaux);
|
| - for (i = 0; i < portmanteaux.length; ++i) {
|
| - t1 = J.get$children$x($.wordList);
|
| - t2 = document.createElement("li", null);
|
| - if (i >= portmanteaux.length)
|
| - throw H.ioore(portmanteaux, i);
|
| - t2.textContent = portmanteaux[i];
|
| - t1.add$1(t1, t2);
|
| - }
|
| +PirateName_makeRequest: function() {
|
| + W.HttpRequest_getString("piratenames.json", null, null).then$1(A.PirateName_processString$closure).catchError$1(A.PirateName_handleError$closure);
|
| },
|
|
|
| -processString$bailout: function(state0, portmanteaux) {
|
| - var t1, i, t2, t3;
|
| - t1 = J.getInterceptor$asx(portmanteaux);
|
| - i = 0;
|
| - while (true) {
|
| - t2 = t1.get$length(portmanteaux);
|
| - if (typeof t2 !== "number")
|
| - throw H.iae(t2);
|
| - if (!(i < t2))
|
| - break;
|
| - t2 = J.get$children$x($.wordList);
|
| - t3 = document.createElement("li", null);
|
| - t3.textContent = t1.$index(portmanteaux, i);
|
| - t2.add$1(t2, t3);
|
| - ++i;
|
| - }
|
| +PirateName_handleError: function(error) {
|
| + H.Primitives_printString("Request failed.");
|
| },
|
|
|
| -handleError: function(error) {
|
| - var t1, t2;
|
| - t1 = J.get$children$x($.wordList);
|
| - t2 = document.createElement("li", null);
|
| - t2.textContent = "Request failed.";
|
| - t1.add$1(t1, t2);
|
| +PirateName_processString: function(jsonString) {
|
| + var pirateNames, t1;
|
| + pirateNames = P._parseJson(jsonString, new P.JsonDecoder(null)._reviver);
|
| + t1 = J.getInterceptor$asx(pirateNames);
|
| + $.PirateName_names = t1.$index(pirateNames, 0);
|
| + $.PirateName_captains = t1.$index(pirateNames, 1);
|
| + $.PirateName_scallywags = t1.$index(pirateNames, 2);
|
| +}}
|
| +
|
| }},
|
| 1],
|
| ]);
|
| @@ -6067,21 +5950,23 @@ init.globalFunctions._defaultEquals$closure = P._defaultEquals$closure = new H.C
|
| init.globalFunctions._defaultHashCode$closure = P._defaultHashCode$closure = new H.Closure$1(P._defaultHashCode, "_defaultHashCode$closure");
|
| init.globalFunctions.identical$closure = P.identical$closure = new H.Closure$2(P.identical, "identical$closure");
|
| init.globalFunctions.identityHashCode$closure = P.identityHashCode$closure = new H.Closure$1(P.identityHashCode, "identityHashCode$closure");
|
| -init.globalFunctions.main$closure = O.main$closure = new H.Closure$0(O.main, "main$closure");
|
| -init.globalFunctions.makeRequest$closure = O.makeRequest$closure = new H.Closure$1(O.makeRequest, "makeRequest$closure");
|
| -init.globalFunctions.processString$closure = O.processString$closure = new H.Closure$1(O.processString, "processString$closure");
|
| -init.globalFunctions.handleError$closure = O.handleError$closure = new H.Closure$1(O.handleError, "handleError$closure");
|
| +init.globalFunctions.main$closure = A.main$closure = new H.Closure$0(A.main, "main$closure");
|
| +init.globalFunctions.generateBadge$closure = A.generateBadge$closure = new H.Closure$1(A.generateBadge, "generateBadge$closure");
|
| +init.globalFunctions.useRandomNameClickHandler$closure = A.useRandomNameClickHandler$closure = new H.Closure$1(A.useRandomNameClickHandler, "useRandomNameClickHandler$closure");
|
| +init.globalFunctions.PirateName_handleError$closure = A.PirateName_handleError$closure = new H.Closure$1(A.PirateName_handleError, "PirateName_handleError$closure");
|
| +init.globalFunctions.PirateName_processString$closure = A.PirateName_processString$closure = new H.Closure$1(A.PirateName_processString, "PirateName_processString$closure");
|
| // Runtime type support
|
| J.JSInt.$isint = true;
|
| J.JSInt.$isObject = true;
|
| -W.Node.$isObject = true;
|
| J.JSString.$isString = true;
|
| J.JSString.$isObject = true;
|
| J.JSNumber.$isObject = true;
|
| +P.Object.$isObject = true;
|
| P.Duration.$isDuration = true;
|
| P.Duration.$isObject = true;
|
| -W.Element.$isObject = true;
|
| -P.Object.$isObject = true;
|
| +W.Event.$isEvent = true;
|
| +W.Event.$isObject = true;
|
| +W.MouseEvent.$isMouseEvent = true;
|
| W.MouseEvent.$isEvent = true;
|
| W.MouseEvent.$isObject = true;
|
| P.Symbol.$isSymbol = true;
|
| @@ -6095,8 +5980,8 @@ H._IsolateContext.$isObject = true;
|
| J.JSArray.$isObject = true;
|
| P.Future.$isFuture = true;
|
| P.Future.$isObject = true;
|
| -W.Event.$isEvent = true;
|
| -W.Event.$isObject = true;
|
| +P.Exception.$isException = true;
|
| +P.Exception.$isObject = true;
|
| P.Zone.$isZone = true;
|
| P.Zone.$isObject = true;
|
| P.ZoneDelegate.$isZoneDelegate = true;
|
| @@ -6111,8 +5996,6 @@ P.Function.$isFunction = true;
|
| P.Function.$isObject = true;
|
| J.JSBool.$isbool = true;
|
| J.JSBool.$isObject = true;
|
| -P.Error.$isError = true;
|
| -P.Error.$isObject = true;
|
| P.StackTrace.$isStackTrace = true;
|
| P.StackTrace.$isObject = true;
|
| P._EventSink.$is_EventSink = true;
|
| @@ -6192,7 +6075,9 @@ J.getInterceptor$x = function(receiver) {
|
| C.C_CloseToken = new H.CloseToken();
|
| C.C_UnknownJavaScriptObject = new J.UnknownJavaScriptObject();
|
| C.C__DelayedDone = new P._DelayedDone();
|
| +C.C__Random = new P._Random();
|
| C.Duration_0 = new P.Duration(0);
|
| +C.EventStreamProvider_change = new W.EventStreamProvider("change");
|
| C.EventStreamProvider_click = new W.EventStreamProvider("click");
|
| C.EventStreamProvider_error = new W.EventStreamProvider("error");
|
| C.EventStreamProvider_load = new W.EventStreamProvider("load");
|
| @@ -6213,7 +6098,6 @@ Isolate.makeConstantList = function(list) {
|
| return list;
|
| };
|
| C.List_empty = Isolate.makeConstantList([]);
|
| -C.NodeList_methods = W.NodeList.prototype;
|
| C._ZoneSpecification_eDx = new P._ZoneSpecification(P._rootHandleUncaughtError$closure, P._rootRun$closure, P._rootRunUnary$closure, P._rootRegisterCallback$closure, P._rootRegisterUnaryCallback$closure, P._rootScheduleMicrotask$closure, P._rootCreateTimer$closure, P._rootCreatePeriodicTimer$closure, P._rootFork$closure);
|
| C.List_empty0 = H.setRuntimeTypeInfo(Isolate.makeConstantList([]), [P.Symbol]);
|
| C.Map_empty = H.setRuntimeTypeInfo(new H.ConstantStringMap(0, {}, C.List_empty0), [P.Symbol, null]);
|
| @@ -6231,7 +6115,11 @@ $.Zone__current = C._CustomizedZone_WYN;
|
| $.Expando__keyCount = 0;
|
| $.Device__isOpera = null;
|
| $.Device__isWebKit = null;
|
| -$.wordList = null;
|
| +$.inputNameElement = null;
|
| +$.genButtonElement = null;
|
| +$.useRandomName = false;
|
| +$.captainRadioElement = null;
|
| +$.scallywagRadioElement = null;
|
| J.$$dom_addEventListener$3$x = function(receiver, a0, a1, a2) {
|
| return J.getInterceptor$x(receiver).$$dom_addEventListener$3(receiver, a0, a1, a2);
|
| };
|
| @@ -6261,17 +6149,14 @@ J.$indexSet$ax = function(receiver, a0, a1) {
|
| return receiver[a0] = a1;
|
| return J.getInterceptor$ax(receiver).$indexSet(receiver, a0, a1);
|
| };
|
| -J._replaceChild$2$x = function(receiver, a0, a1) {
|
| - return J.getInterceptor$x(receiver)._replaceChild$2(receiver, a0, a1);
|
| -};
|
| J.elementAt$1$ax = function(receiver, a0) {
|
| return J.getInterceptor$ax(receiver).elementAt$1(receiver, a0);
|
| };
|
| J.forEach$1$ax = function(receiver, a0) {
|
| return J.getInterceptor$ax(receiver).forEach$1(receiver, a0);
|
| };
|
| -J.get$children$x = function(receiver) {
|
| - return J.getInterceptor$x(receiver).get$children(receiver);
|
| +J.get$checked$x = function(receiver) {
|
| + return J.getInterceptor$x(receiver).get$checked(receiver);
|
| };
|
| J.get$hashCode$ = function(receiver) {
|
| return J.getInterceptor(receiver).get$hashCode(receiver);
|
| @@ -6285,15 +6170,21 @@ J.get$length$asx = function(receiver) {
|
| J.get$responseText$x = function(receiver) {
|
| return J.getInterceptor$x(receiver).get$responseText(receiver);
|
| };
|
| +J.get$target$x = function(receiver) {
|
| + return J.getInterceptor$x(receiver).get$target(receiver);
|
| +};
|
| +J.get$value$x = function(receiver) {
|
| + return J.getInterceptor$x(receiver).get$value(receiver);
|
| +};
|
| J.map$1$ax = function(receiver, a0) {
|
| return J.getInterceptor$ax(receiver).map$1(receiver, a0);
|
| };
|
| -J.replaceWith$1$x = function(receiver, a0) {
|
| - return J.getInterceptor$x(receiver).replaceWith$1(receiver, a0);
|
| -};
|
| J.send$2$x = function(receiver, a0, a1) {
|
| return J.getInterceptor$x(receiver).send$2(receiver, a0, a1);
|
| };
|
| +J.set$disabled$x = function(receiver, value) {
|
| + return J.getInterceptor$x(receiver).set$disabled(receiver, value);
|
| +};
|
| J.toString$0 = function(receiver) {
|
| return J.getInterceptor(receiver).toString$0(receiver);
|
| };
|
| @@ -6364,16 +6255,33 @@ Isolate.$lazy($, "_toStringList", "ListMixin__toStringList", "get$ListMixin__toS
|
| Isolate.$lazy($, "_toStringList", "Maps__toStringList", "get$Maps__toStringList", function() {
|
| return P.List_List(null, null);
|
| });
|
| +Isolate.$lazy($, "names", "PirateName_names", "get$PirateName_names", function() {
|
| + return [];
|
| +});
|
| +Isolate.$lazy($, "captains", "PirateName_captains", "get$PirateName_captains", function() {
|
| + return [];
|
| +});
|
| +Isolate.$lazy($, "scallywags", "PirateName_scallywags", "get$PirateName_scallywags", function() {
|
| + return [];
|
| +});
|
| // Native classes
|
| -H.defineNativeMethods("DOMError|FileError|MediaError|MediaKeyError|Navigator|NavigatorUserMediaError|PositionError|SQLError|SVGAnimatedNumberList", J.Interceptor);
|
| +H.defineNativeMethods("DOMError|FileError|MediaError|MediaKeyError|Navigator|NavigatorUserMediaError|PositionError|SQLError|SVGAnimatedNumberList|SVGAnimatedString", J.Interceptor);
|
|
|
| -H.defineNativeMethods("HTMLAppletElement|HTMLAreaElement|HTMLAudioElement|HTMLBRElement|HTMLBaseElement|HTMLBaseFontElement|HTMLBodyElement|HTMLButtonElement|HTMLCanvasElement|HTMLContentElement|HTMLDListElement|HTMLDataListElement|HTMLDetailsElement|HTMLDialogElement|HTMLDirectoryElement|HTMLDivElement|HTMLEmbedElement|HTMLFieldSetElement|HTMLFontElement|HTMLFrameElement|HTMLFrameSetElement|HTMLHRElement|HTMLHeadElement|HTMLHeadingElement|HTMLHtmlElement|HTMLIFrameElement|HTMLImageElement|HTMLKeygenElement|HTMLLIElement|HTMLLabelElement|HTMLLegendElement|HTMLLinkElement|HTMLMapElement|HTMLMarqueeElement|HTMLMediaElement|HTMLMenuElement|HTMLMetaElement|HTMLMeterElement|HTMLModElement|HTMLOListElement|HTMLObjectElement|HTMLOptGroupElement|HTMLOptionElement|HTMLOutputElement|HTMLParagraphElement|HTMLParamElement|HTMLPreElement|HTMLProgressElement|HTMLQuoteElement|HTMLScriptElement|HTMLShadowElement|HTMLSourceElement|HTMLSpanElement|HTMLStyleElement|HTMLTableCaptionElement|HTMLTableCellElement|HTMLTableColElement|HTMLTableDataCellElement|HTMLTableElement|HTMLTableHeaderCellElement|HTMLTableRowElement|HTMLTableSectionElement|HTMLTemplateElement|HTMLTextAreaElement|HTMLTitleElement|HTMLTrackElement|HTMLUListElement|HTMLUnknownElement|HTMLVideoElement", W.HtmlElement);
|
| +H.defineNativeMethods("HTMLAppletElement|HTMLAudioElement|HTMLBRElement|HTMLBaseFontElement|HTMLBodyElement|HTMLCanvasElement|HTMLContentElement|HTMLDListElement|HTMLDataListElement|HTMLDetailsElement|HTMLDialogElement|HTMLDirectoryElement|HTMLDivElement|HTMLEmbedElement|HTMLFontElement|HTMLFrameElement|HTMLFrameSetElement|HTMLHRElement|HTMLHeadElement|HTMLHeadingElement|HTMLHtmlElement|HTMLIFrameElement|HTMLImageElement|HTMLLabelElement|HTMLLegendElement|HTMLMapElement|HTMLMarqueeElement|HTMLMediaElement|HTMLMenuElement|HTMLMetaElement|HTMLModElement|HTMLOListElement|HTMLObjectElement|HTMLParagraphElement|HTMLPreElement|HTMLQuoteElement|HTMLScriptElement|HTMLShadowElement|HTMLSourceElement|HTMLSpanElement|HTMLTableCaptionElement|HTMLTableCellElement|HTMLTableColElement|HTMLTableDataCellElement|HTMLTableElement|HTMLTableHeaderCellElement|HTMLTableRowElement|HTMLTableSectionElement|HTMLTemplateElement|HTMLTitleElement|HTMLTrackElement|HTMLUListElement|HTMLUnknownElement|HTMLVideoElement", W.HtmlElement);
|
|
|
| H.defineNativeMethodsNonleaf("HTMLElement", W.HtmlElement);
|
|
|
| H.defineNativeMethods("HTMLAnchorElement", W.AnchorElement);
|
|
|
| -H.defineNativeMethods("CDATASection|CharacterData|Comment|ProcessingInstruction|Text", W.CharacterData);
|
| +H.defineNativeMethods("HTMLAreaElement", W.AreaElement);
|
| +
|
| +H.defineNativeMethods("HTMLBaseElement", W.BaseElement);
|
| +
|
| +H.defineNativeMethods("HTMLButtonElement", W.ButtonElement);
|
| +
|
| +H.defineNativeMethods("CDATASection|Comment|Text", W.CharacterData);
|
| +
|
| +H.defineNativeMethodsNonleaf("CharacterData", W.CharacterData);
|
|
|
| H.defineNativeMethods("DOMException", W.DomException);
|
|
|
| @@ -6385,26 +6293,48 @@ H.defineNativeMethodsNonleaf("Event", W.Event);
|
|
|
| H.defineNativeMethodsNonleaf("EventTarget", W.EventTarget);
|
|
|
| -H.defineNativeMethods("HTMLFormElement", W.FormElement);
|
| +H.defineNativeMethods("HTMLFieldSetElement", W.FieldSetElement);
|
|
|
| -H.defineNativeMethods("HTMLCollection|HTMLFormControlsCollection|HTMLOptionsCollection", W.HtmlCollection);
|
| +H.defineNativeMethods("HTMLFormElement", W.FormElement);
|
|
|
| H.defineNativeMethods("XMLHttpRequest", W.HttpRequest);
|
|
|
| H.defineNativeMethods("HTMLInputElement", W.InputElement);
|
|
|
| +H.defineNativeMethods("HTMLKeygenElement", W.KeygenElement);
|
| +
|
| +H.defineNativeMethods("HTMLLIElement", W.LIElement);
|
| +
|
| +H.defineNativeMethods("HTMLLinkElement", W.LinkElement);
|
| +
|
| +H.defineNativeMethods("HTMLMeterElement", W.MeterElement);
|
| +
|
| H.defineNativeMethods("DragEvent|MSPointerEvent|MouseEvent|MouseScrollEvent|MouseWheelEvent|PointerEvent|WheelEvent", W.MouseEvent);
|
|
|
| H.defineNativeMethods("Attr|Document|DocumentFragment|DocumentType|Entity|HTMLDocument|Notation|SVGDocument|ShadowRoot", W.Node);
|
|
|
| H.defineNativeMethodsNonleaf("Node", W.Node);
|
|
|
| -H.defineNativeMethods("NodeList|RadioNodeList", W.NodeList);
|
| +H.defineNativeMethods("HTMLOptGroupElement", W.OptGroupElement);
|
| +
|
| +H.defineNativeMethods("HTMLOptionElement", W.OptionElement);
|
| +
|
| +H.defineNativeMethods("HTMLOutputElement", W.OutputElement);
|
| +
|
| +H.defineNativeMethods("HTMLParamElement", W.ParamElement);
|
| +
|
| +H.defineNativeMethods("ProcessingInstruction", W.ProcessingInstruction);
|
| +
|
| +H.defineNativeMethods("HTMLProgressElement", W.ProgressElement);
|
|
|
| H.defineNativeMethods("ProgressEvent|ResourceProgressEvent|XMLHttpRequestProgressEvent", W.ProgressEvent);
|
|
|
| H.defineNativeMethods("HTMLSelectElement", W.SelectElement);
|
|
|
| +H.defineNativeMethods("HTMLStyleElement", W.StyleElement);
|
| +
|
| +H.defineNativeMethods("HTMLTextAreaElement", W.TextAreaElement);
|
| +
|
| H.defineNativeMethods("CompositionEvent|FocusEvent|KeyboardEvent|SVGZoomEvent|TextEvent|TouchEvent", W.UIEvent);
|
|
|
| H.defineNativeMethodsNonleaf("UIEvent", W.UIEvent);
|
| @@ -6413,7 +6343,17 @@ H.defineNativeMethods("DOMWindow|Window", W.Window);
|
|
|
| H.defineNativeMethodsNonleaf("XMLHttpRequestEventTarget", W.XmlHttpRequestEventTarget);
|
|
|
| -H.defineNativeMethods("SVGAElement|SVGAltGlyphDefElement|SVGAltGlyphElement|SVGAltGlyphItemElement|SVGAnimateColorElement|SVGAnimateElement|SVGAnimateMotionElement|SVGAnimateTransformElement|SVGAnimationElement|SVGCircleElement|SVGClipPathElement|SVGComponentTransferFunctionElement|SVGCursorElement|SVGDefsElement|SVGDescElement|SVGElement|SVGEllipseElement|SVGFEBlendElement|SVGFEColorMatrixElement|SVGFEComponentTransferElement|SVGFECompositeElement|SVGFEConvolveMatrixElement|SVGFEDiffuseLightingElement|SVGFEDisplacementMapElement|SVGFEDistantLightElement|SVGFEDropShadowElement|SVGFEFloodElement|SVGFEFuncAElement|SVGFEFuncBElement|SVGFEFuncGElement|SVGFEFuncRElement|SVGFEGaussianBlurElement|SVGFEImageElement|SVGFEMergeElement|SVGFEMergeNodeElement|SVGFEMorphologyElement|SVGFEOffsetElement|SVGFEPointLightElement|SVGFESpecularLightingElement|SVGFESpotLightElement|SVGFETileElement|SVGFETurbulenceElement|SVGFilterElement|SVGFontElement|SVGFontFaceElement|SVGFontFaceFormatElement|SVGFontFaceNameElement|SVGFontFaceSrcElement|SVGFontFaceUriElement|SVGForeignObjectElement|SVGGElement|SVGGlyphElement|SVGGlyphRefElement|SVGGradientElement|SVGGraphicsElement|SVGHKernElement|SVGImageElement|SVGLineElement|SVGLinearGradientElement|SVGMPathElement|SVGMarkerElement|SVGMaskElement|SVGMetadataElement|SVGMissingGlyphElement|SVGPathElement|SVGPatternElement|SVGPolygonElement|SVGPolylineElement|SVGRadialGradientElement|SVGRectElement|SVGSVGElement|SVGScriptElement|SVGSetElement|SVGStopElement|SVGStyleElement|SVGSwitchElement|SVGSymbolElement|SVGTRefElement|SVGTSpanElement|SVGTextContentElement|SVGTextElement|SVGTextPathElement|SVGTextPositioningElement|SVGTitleElement|SVGUseElement|SVGVKernElement|SVGViewElement", P.SvgElement);
|
| +H.defineNativeMethods("SVGAElement", P.AElement);
|
| +
|
| +H.defineNativeMethods("SVGAltGlyphElement|SVGCircleElement|SVGClipPathElement|SVGDefsElement|SVGEllipseElement|SVGForeignObjectElement|SVGGElement|SVGImageElement|SVGLineElement|SVGPathElement|SVGPolygonElement|SVGPolylineElement|SVGRectElement|SVGSVGElement|SVGSwitchElement|SVGTRefElement|SVGTSpanElement|SVGTextContentElement|SVGTextElement|SVGTextPathElement|SVGTextPositioningElement|SVGUseElement", P.GraphicsElement);
|
| +
|
| +H.defineNativeMethodsNonleaf("SVGGraphicsElement", P.GraphicsElement);
|
| +
|
| +H.defineNativeMethods("SVGStyleElement", P.StyleElement0);
|
| +
|
| +H.defineNativeMethods("SVGAltGlyphDefElement|SVGAltGlyphItemElement|SVGAnimateColorElement|SVGAnimateElement|SVGAnimateMotionElement|SVGAnimateTransformElement|SVGAnimationElement|SVGComponentTransferFunctionElement|SVGCursorElement|SVGDescElement|SVGFEBlendElement|SVGFEColorMatrixElement|SVGFEComponentTransferElement|SVGFECompositeElement|SVGFEConvolveMatrixElement|SVGFEDiffuseLightingElement|SVGFEDisplacementMapElement|SVGFEDistantLightElement|SVGFEDropShadowElement|SVGFEFloodElement|SVGFEFuncAElement|SVGFEFuncBElement|SVGFEFuncGElement|SVGFEFuncRElement|SVGFEGaussianBlurElement|SVGFEImageElement|SVGFEMergeElement|SVGFEMergeNodeElement|SVGFEMorphologyElement|SVGFEOffsetElement|SVGFEPointLightElement|SVGFESpecularLightingElement|SVGFESpotLightElement|SVGFETileElement|SVGFETurbulenceElement|SVGFilterElement|SVGFontElement|SVGFontFaceElement|SVGFontFaceFormatElement|SVGFontFaceNameElement|SVGFontFaceSrcElement|SVGFontFaceUriElement|SVGGlyphElement|SVGGlyphRefElement|SVGGradientElement|SVGHKernElement|SVGLinearGradientElement|SVGMPathElement|SVGMarkerElement|SVGMaskElement|SVGMetadataElement|SVGMissingGlyphElement|SVGPatternElement|SVGRadialGradientElement|SVGScriptElement|SVGSetElement|SVGStopElement|SVGSymbolElement|SVGTitleElement|SVGVKernElement|SVGViewElement", P.SvgElement);
|
| +
|
| +H.defineNativeMethodsNonleaf("SVGElement", P.SvgElement);
|
|
|
| H.defineNativeMethodsExtended("ArrayBufferView", P.TypedData, [P.TypedData_ListMixin, P.TypedData_ListMixin_FixedLengthListMixin]);
|
|
|
| @@ -6492,9 +6432,9 @@ Z = convertToFastObject(Z);
|
| init.currentScript = currentScript;
|
|
|
| if (typeof dartMainRunner === "function") {
|
| - dartMainRunner(function() { H.startRootIsolate(O.main$closure); });
|
| + dartMainRunner(function() { H.startRootIsolate(A.main$closure); });
|
| } else {
|
| - H.startRootIsolate(O.main$closure);
|
| + H.startRootIsolate(A.main$closure);
|
| }
|
| });
|
| // END invoke [main].
|
| @@ -7456,6 +7396,16 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| BoundClosure.prototype = $desc;
|
| + function CastErrorImplementation(message) {
|
| + this.message = message;
|
| + }
|
| + CastErrorImplementation.builtin$cls = "CastErrorImplementation";
|
| + if (!"name" in CastErrorImplementation)
|
| + CastErrorImplementation.name = "CastErrorImplementation";
|
| + $desc = $collectedClasses.CastErrorImplementation;
|
| + if ($desc instanceof Array)
|
| + $desc = $desc[1];
|
| + CastErrorImplementation.prototype = $desc;
|
| function applyExperimentalFixup_newGetTagDartFunction(newGetTagJSFunction_0) {
|
| this.newGetTagJSFunction_0 = newGetTagJSFunction_0;
|
| }
|
| @@ -7522,28 +7472,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| MappedListIterable.prototype = $desc;
|
| - function WhereIterable(_iterable, _f) {
|
| - this._iterable = _iterable;
|
| - this._f = _f;
|
| - }
|
| - WhereIterable.builtin$cls = "WhereIterable";
|
| - if (!"name" in WhereIterable)
|
| - WhereIterable.name = "WhereIterable";
|
| - $desc = $collectedClasses.WhereIterable;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - WhereIterable.prototype = $desc;
|
| - function WhereIterator(_iterator, _f) {
|
| - this._iterator = _iterator;
|
| - this._f = _f;
|
| - }
|
| - WhereIterator.builtin$cls = "WhereIterator";
|
| - if (!"name" in WhereIterator)
|
| - WhereIterator.name = "WhereIterator";
|
| - $desc = $collectedClasses.WhereIterator;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - WhereIterator.prototype = $desc;
|
| function FixedLengthListMixin() {
|
| }
|
| FixedLengthListMixin.builtin$cls = "FixedLengthListMixin";
|
| @@ -8347,15 +8275,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| IterableBase.prototype = $desc;
|
| - function ListBase() {
|
| - }
|
| - ListBase.builtin$cls = "ListBase";
|
| - if (!"name" in ListBase)
|
| - ListBase.name = "ListBase";
|
| - $desc = $collectedClasses.ListBase;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - ListBase.prototype = $desc;
|
| function ListMixin() {
|
| }
|
| ListMixin.builtin$cls = "ListMixin";
|
| @@ -8566,6 +8485,15 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| CyclicInitializationError.prototype = $desc;
|
| + function Exception() {
|
| + }
|
| + Exception.builtin$cls = "Exception";
|
| + if (!"name" in Exception)
|
| + Exception.name = "Exception";
|
| + $desc = $collectedClasses.Exception;
|
| + if ($desc instanceof Array)
|
| + $desc = $desc[1];
|
| + Exception.prototype = $desc;
|
| function _ExceptionImplementation(message) {
|
| this.message = message;
|
| }
|
| @@ -8672,35 +8600,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| Symbol.prototype = $desc;
|
| - function _ChildrenElementList(_element, _childElements) {
|
| - this._element = _element;
|
| - this._childElements = _childElements;
|
| - }
|
| - _ChildrenElementList.builtin$cls = "_ChildrenElementList";
|
| - if (!"name" in _ChildrenElementList)
|
| - _ChildrenElementList.name = "_ChildrenElementList";
|
| - $desc = $collectedClasses._ChildrenElementList;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - _ChildrenElementList.prototype = $desc;
|
| - function Interceptor_ListMixin() {
|
| - }
|
| - Interceptor_ListMixin.builtin$cls = "Interceptor_ListMixin";
|
| - if (!"name" in Interceptor_ListMixin)
|
| - Interceptor_ListMixin.name = "Interceptor_ListMixin";
|
| - $desc = $collectedClasses.Interceptor_ListMixin;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - Interceptor_ListMixin.prototype = $desc;
|
| - function Interceptor_ListMixin_ImmutableListMixin() {
|
| - }
|
| - Interceptor_ListMixin_ImmutableListMixin.builtin$cls = "Interceptor_ListMixin_ImmutableListMixin";
|
| - if (!"name" in Interceptor_ListMixin_ImmutableListMixin)
|
| - Interceptor_ListMixin_ImmutableListMixin.name = "Interceptor_ListMixin_ImmutableListMixin";
|
| - $desc = $collectedClasses.Interceptor_ListMixin_ImmutableListMixin;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - Interceptor_ListMixin_ImmutableListMixin.prototype = $desc;
|
| function HttpRequest_getString_closure() {
|
| }
|
| HttpRequest_getString_closure.builtin$cls = "HttpRequest_getString_closure";
|
| @@ -8741,34 +8640,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| HttpRequest_request_closure0.prototype = $desc;
|
| - function _ChildNodeListLazy(_this) {
|
| - this._this = _this;
|
| - }
|
| - _ChildNodeListLazy.builtin$cls = "_ChildNodeListLazy";
|
| - if (!"name" in _ChildNodeListLazy)
|
| - _ChildNodeListLazy.name = "_ChildNodeListLazy";
|
| - $desc = $collectedClasses._ChildNodeListLazy;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - _ChildNodeListLazy.prototype = $desc;
|
| - function Interceptor_ListMixin0() {
|
| - }
|
| - Interceptor_ListMixin0.builtin$cls = "Interceptor_ListMixin0";
|
| - if (!"name" in Interceptor_ListMixin0)
|
| - Interceptor_ListMixin0.name = "Interceptor_ListMixin0";
|
| - $desc = $collectedClasses.Interceptor_ListMixin0;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - Interceptor_ListMixin0.prototype = $desc;
|
| - function Interceptor_ListMixin_ImmutableListMixin0() {
|
| - }
|
| - Interceptor_ListMixin_ImmutableListMixin0.builtin$cls = "Interceptor_ListMixin_ImmutableListMixin0";
|
| - if (!"name" in Interceptor_ListMixin_ImmutableListMixin0)
|
| - Interceptor_ListMixin_ImmutableListMixin0.name = "Interceptor_ListMixin_ImmutableListMixin0";
|
| - $desc = $collectedClasses.Interceptor_ListMixin_ImmutableListMixin0;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - Interceptor_ListMixin_ImmutableListMixin0.prototype = $desc;
|
| function _EventStream(_target, _eventType, _useCapture) {
|
| this._target = _target;
|
| this._eventType = _eventType;
|
| @@ -8817,28 +8688,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| EventStreamProvider.prototype = $desc;
|
| - function ImmutableListMixin() {
|
| - }
|
| - ImmutableListMixin.builtin$cls = "ImmutableListMixin";
|
| - if (!"name" in ImmutableListMixin)
|
| - ImmutableListMixin.name = "ImmutableListMixin";
|
| - $desc = $collectedClasses.ImmutableListMixin;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - ImmutableListMixin.prototype = $desc;
|
| - function FixedSizeListIterator(_array, _html$_length, _html$_position, _html$_current) {
|
| - this._array = _array;
|
| - this._html$_length = _html$_length;
|
| - this._html$_position = _html$_position;
|
| - this._html$_current = _html$_current;
|
| - }
|
| - FixedSizeListIterator.builtin$cls = "FixedSizeListIterator";
|
| - if (!"name" in FixedSizeListIterator)
|
| - FixedSizeListIterator.name = "FixedSizeListIterator";
|
| - $desc = $collectedClasses.FixedSizeListIterator;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - FixedSizeListIterator.prototype = $desc;
|
| function _DOMWindowCrossFrame(_window) {
|
| this._window = _window;
|
| }
|
| @@ -8858,6 +8707,15 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| ReceivePort.prototype = $desc;
|
| + function _Random() {
|
| + }
|
| + _Random.builtin$cls = "_Random";
|
| + if (!"name" in _Random)
|
| + _Random.name = "_Random";
|
| + $desc = $collectedClasses._Random;
|
| + if ($desc instanceof Array)
|
| + $desc = $desc[1];
|
| + _Random.prototype = $desc;
|
| function TypedData_ListMixin() {
|
| }
|
| TypedData_ListMixin.builtin$cls = "TypedData_ListMixin";
|
| @@ -8876,26 +8734,17 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| TypedData_ListMixin_FixedLengthListMixin.prototype = $desc;
|
| - function FilteredElementList(_node, _childNodes) {
|
| - this._node = _node;
|
| - this._childNodes = _childNodes;
|
| - }
|
| - FilteredElementList.builtin$cls = "FilteredElementList";
|
| - if (!"name" in FilteredElementList)
|
| - FilteredElementList.name = "FilteredElementList";
|
| - $desc = $collectedClasses.FilteredElementList;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - FilteredElementList.prototype = $desc;
|
| - function FilteredElementList__filtered_closure() {
|
| + function PirateName(indexGen, _pirateName) {
|
| + this.indexGen = indexGen;
|
| + this._pirateName = _pirateName;
|
| }
|
| - FilteredElementList__filtered_closure.builtin$cls = "FilteredElementList__filtered_closure";
|
| - if (!"name" in FilteredElementList__filtered_closure)
|
| - FilteredElementList__filtered_closure.name = "FilteredElementList__filtered_closure";
|
| - $desc = $collectedClasses.FilteredElementList__filtered_closure;
|
| + PirateName.builtin$cls = "PirateName";
|
| + if (!"name" in PirateName)
|
| + PirateName.name = "PirateName";
|
| + $desc = $collectedClasses.PirateName;
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| - FilteredElementList__filtered_closure.prototype = $desc;
|
| + PirateName.prototype = $desc;
|
| function HtmlElement() {
|
| }
|
| HtmlElement.builtin$cls = "HtmlElement";
|
| @@ -8914,6 +8763,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| AnchorElement.prototype = $desc;
|
| + AnchorElement.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function AnimationEvent() {
|
| }
|
| AnimationEvent.builtin$cls = "AnimationEvent";
|
| @@ -8932,6 +8784,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| AreaElement.prototype = $desc;
|
| + AreaElement.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function AudioElement() {
|
| }
|
| AudioElement.builtin$cls = "AudioElement";
|
| @@ -8968,6 +8823,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| BaseElement.prototype = $desc;
|
| + BaseElement.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function BeforeLoadEvent() {
|
| }
|
| BeforeLoadEvent.builtin$cls = "BeforeLoadEvent";
|
| @@ -8995,6 +8853,15 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| ButtonElement.prototype = $desc;
|
| + ButtonElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| + ButtonElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + ButtonElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function CDataSection() {
|
| }
|
| CDataSection.builtin$cls = "CDataSection";
|
| @@ -9241,6 +9108,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| FieldSetElement.prototype = $desc;
|
| + FieldSetElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function FileError() {
|
| }
|
| FileError.builtin$cls = "FileError";
|
| @@ -9271,6 +9141,9 @@ function dart_precompiled($collectedClasses) {
|
| FormElement.prototype.get$length = function(receiver) {
|
| return receiver.length;
|
| };
|
| + FormElement.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function HRElement() {
|
| }
|
| HRElement.builtin$cls = "HRElement";
|
| @@ -9307,15 +9180,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| HeadingElement.prototype = $desc;
|
| - function HtmlCollection() {
|
| - }
|
| - HtmlCollection.builtin$cls = "HtmlCollection";
|
| - if (!"name" in HtmlCollection)
|
| - HtmlCollection.name = "HtmlCollection";
|
| - $desc = $collectedClasses.HtmlCollection;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - HtmlCollection.prototype = $desc;
|
| function HtmlDocument() {
|
| }
|
| HtmlDocument.builtin$cls = "HtmlDocument";
|
| @@ -9325,15 +9189,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| HtmlDocument.prototype = $desc;
|
| - function HtmlFormControlsCollection() {
|
| - }
|
| - HtmlFormControlsCollection.builtin$cls = "HtmlFormControlsCollection";
|
| - if (!"name" in HtmlFormControlsCollection)
|
| - HtmlFormControlsCollection.name = "HtmlFormControlsCollection";
|
| - $desc = $collectedClasses.HtmlFormControlsCollection;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - HtmlFormControlsCollection.prototype = $desc;
|
| function HtmlHtmlElement() {
|
| }
|
| HtmlHtmlElement.builtin$cls = "HtmlHtmlElement";
|
| @@ -9343,15 +9198,6 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| HtmlHtmlElement.prototype = $desc;
|
| - function HtmlOptionsCollection() {
|
| - }
|
| - HtmlOptionsCollection.builtin$cls = "HtmlOptionsCollection";
|
| - if (!"name" in HtmlOptionsCollection)
|
| - HtmlOptionsCollection.name = "HtmlOptionsCollection";
|
| - $desc = $collectedClasses.HtmlOptionsCollection;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - HtmlOptionsCollection.prototype = $desc;
|
| function HttpRequest() {
|
| }
|
| HttpRequest.builtin$cls = "HttpRequest";
|
| @@ -9391,6 +9237,21 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| InputElement.prototype = $desc;
|
| + InputElement.prototype.get$checked = function(receiver) {
|
| + return receiver.checked;
|
| + };
|
| + InputElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| + InputElement.prototype.set$placeholder = function(receiver, v) {
|
| + return receiver.placeholder = v;
|
| + };
|
| + InputElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + InputElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function KeyboardEvent() {
|
| }
|
| KeyboardEvent.builtin$cls = "KeyboardEvent";
|
| @@ -9409,6 +9270,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| KeygenElement.prototype = $desc;
|
| + KeygenElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function LIElement() {
|
| }
|
| LIElement.builtin$cls = "LIElement";
|
| @@ -9418,6 +9282,12 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| LIElement.prototype = $desc;
|
| + LIElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + LIElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function LabelElement() {
|
| }
|
| LabelElement.builtin$cls = "LabelElement";
|
| @@ -9445,6 +9315,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| LinkElement.prototype = $desc;
|
| + LinkElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function MapElement() {
|
| }
|
| MapElement.builtin$cls = "MapElement";
|
| @@ -9562,6 +9435,12 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| MeterElement.prototype = $desc;
|
| + MeterElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + MeterElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function MidiConnectionEvent() {
|
| }
|
| MidiConnectionEvent.builtin$cls = "MidiConnectionEvent";
|
| @@ -9637,15 +9516,6 @@ function dart_precompiled($collectedClasses) {
|
| Node.prototype.get$parent = function(receiver) {
|
| return receiver.parentElement;
|
| };
|
| - function NodeList() {
|
| - }
|
| - NodeList.builtin$cls = "NodeList";
|
| - if (!"name" in NodeList)
|
| - NodeList.name = "NodeList";
|
| - $desc = $collectedClasses.NodeList;
|
| - if ($desc instanceof Array)
|
| - $desc = $desc[1];
|
| - NodeList.prototype = $desc;
|
| function Notation() {
|
| }
|
| Notation.builtin$cls = "Notation";
|
| @@ -9682,6 +9552,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| OptGroupElement.prototype = $desc;
|
| + OptGroupElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function OptionElement() {
|
| }
|
| OptionElement.builtin$cls = "OptionElement";
|
| @@ -9691,6 +9564,15 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| OptionElement.prototype = $desc;
|
| + OptionElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| + OptionElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + OptionElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function OutputElement() {
|
| }
|
| OutputElement.builtin$cls = "OutputElement";
|
| @@ -9700,6 +9582,12 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| OutputElement.prototype = $desc;
|
| + OutputElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + OutputElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function OverflowEvent() {
|
| }
|
| OverflowEvent.builtin$cls = "OverflowEvent";
|
| @@ -9736,6 +9624,12 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| ParamElement.prototype = $desc;
|
| + ParamElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + ParamElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function PopStateEvent() {
|
| }
|
| PopStateEvent.builtin$cls = "PopStateEvent";
|
| @@ -9772,6 +9666,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| ProcessingInstruction.prototype = $desc;
|
| + ProcessingInstruction.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function ProgressElement() {
|
| }
|
| ProgressElement.builtin$cls = "ProgressElement";
|
| @@ -9781,6 +9678,12 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| ProgressElement.prototype = $desc;
|
| + ProgressElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + ProgressElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function ProgressEvent() {
|
| }
|
| ProgressEvent.builtin$cls = "ProgressEvent";
|
| @@ -9862,9 +9765,18 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| SelectElement.prototype = $desc;
|
| + SelectElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| SelectElement.prototype.get$length = function(receiver) {
|
| return receiver.length;
|
| };
|
| + SelectElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + SelectElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function ShadowElement() {
|
| }
|
| ShadowElement.builtin$cls = "ShadowElement";
|
| @@ -9955,6 +9867,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| StyleElement.prototype = $desc;
|
| + StyleElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function TableCaptionElement() {
|
| }
|
| TableCaptionElement.builtin$cls = "TableCaptionElement";
|
| @@ -10036,6 +9951,18 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| TextAreaElement.prototype = $desc;
|
| + TextAreaElement.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| + TextAreaElement.prototype.set$placeholder = function(receiver, v) {
|
| + return receiver.placeholder = v;
|
| + };
|
| + TextAreaElement.prototype.get$value = function(receiver) {
|
| + return receiver.value;
|
| + };
|
| + TextAreaElement.prototype.set$value = function(receiver, v) {
|
| + return receiver.value = v;
|
| + };
|
| function TextEvent() {
|
| }
|
| TextEvent.builtin$cls = "TextEvent";
|
| @@ -10261,6 +10188,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| AElement.prototype = $desc;
|
| + AElement.prototype.get$target = function(receiver) {
|
| + return receiver.target;
|
| + };
|
| function AltGlyphElement() {
|
| }
|
| AltGlyphElement.builtin$cls = "AltGlyphElement";
|
| @@ -10306,6 +10236,15 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| AnimatedNumberList.prototype = $desc;
|
| + function AnimatedString() {
|
| + }
|
| + AnimatedString.builtin$cls = "AnimatedString";
|
| + if (!"name" in AnimatedString)
|
| + AnimatedString.name = "AnimatedString";
|
| + $desc = $collectedClasses.AnimatedString;
|
| + if ($desc instanceof Array)
|
| + $desc = $desc[1];
|
| + AnimatedString.prototype = $desc;
|
| function AnimationElement() {
|
| }
|
| AnimationElement.builtin$cls = "AnimationElement";
|
| @@ -10756,6 +10695,9 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| StyleElement0.prototype = $desc;
|
| + StyleElement0.prototype.set$disabled = function(receiver, v) {
|
| + return receiver.disabled = v;
|
| + };
|
| function SvgDocument() {
|
| }
|
| SvgDocument.builtin$cls = "SvgDocument";
|
| @@ -11170,5 +11112,5 @@ function dart_precompiled($collectedClasses) {
|
| if ($desc instanceof Array)
|
| $desc = $desc[1];
|
| Closure$5.prototype = $desc;
|
| - return [JS_CONST, Interceptor, JSBool, JSNull, JavaScriptObject, PlainJavaScriptObject, UnknownJavaScriptObject, JSArray, JSMutableArray, JSFixedArray, JSExtendableArray, JSNumber, JSInt, JSDouble, JSString, CloseToken, JsIsolateSink, _Manager, _IsolateContext, _EventLoop, _EventLoop__runHelper_next, _IsolateEvent, _MainManagerStub, IsolateNatives__processWorkerMessage_closure, _BaseSendPort, _BaseSendPort_call_closure, _NativeJsSendPort, _NativeJsSendPort_send_closure, _NativeJsSendPort_send__closure, _WorkerSendPort, _WorkerSendPort_send_closure, ReceivePortImpl, _waitForPendingPorts_closure, _PendingSendPortFinder, _PendingSendPortFinder_visitList_closure, _PendingSendPortFinder_visitMap_closure, _JsSerializer, _JsCopier, _JsDeserializer, _JsVisitedMap, _MessageTraverserVisitedMap, _MessageTraverser, _Copier, _Copier_visitMap_closure, _Serializer, _Deserializer, TimerImpl, TimerImpl_internalCallback, TimerImpl_internalCallback0, TimerImpl$periodic_closure, ConstantMap, ConstantStringMap, ConstantStringMap_forEach_closure, ConstantStringMap_values_closure, _ConstantMapKeyIterable, TypeErrorDecoder, NullError, JsNoSuchMethodError, UnknownJsTypeError, unwrapException_saveStackTrace, _StackTrace, invokeClosure_closure, invokeClosure_closure0, invokeClosure_closure1, invokeClosure_closure2, invokeClosure_closure3, Closure, BoundClosure, applyExperimentalFixup_newGetTagDartFunction, ListIterable, ListIterator, MappedIterable, MappedIterator, MappedListIterable, WhereIterable, WhereIterator, FixedLengthListMixin, Future, Future_wait_handleError, Future_wait_closure, _Completer, _AsyncCompleter, _Future, BoundClosure$2, _Future__addListener_closure, _Future__chainFutures_closure, _Future__chainFutures_closure0, _Future__asyncComplete_closure, _Future__asyncCompleteError_closure, _Future__propagateToListeners_closure, _Future__propagateToListeners_closure0, _Future__propagateToListeners__closure, _Future__propagateToListeners__closure0, Stream, Stream_forEach_closure, Stream_forEach__closure, Stream_forEach__closure0, Stream_forEach_closure0, Stream_length_closure, Stream_length_closure0, Stream_toList_closure, Stream_toList_closure0, StreamSubscription, EventSink, _EventSink, _BufferingStreamSubscription, BoundClosure$0, _DelayedEvent, _DelayedData, _DelayedError, _DelayedDone, _PendingEvents, _PendingEvents_schedule_closure, _StreamImplEvents, _cancelAndError_closure, _ForwardingStream, _ForwardingStreamSubscription, BoundClosure$1, _MapStream, Timer, ZoneSpecification, _ZoneSpecification, ZoneDelegate, Zone, _ZoneDelegate, _CustomizedZone, _CustomizedZone_bindCallback_closure, _CustomizedZone_bindCallback_closure0, _CustomizedZone_bindUnaryCallback_closure, _CustomizedZone_bindUnaryCallback_closure0, _rootHandleUncaughtError_closure, _rootFork_closure, _HashMap, _HashMap_values_closure, HashMapKeyIterable, HashMapKeyIterator, _LinkedHashMap, _LinkedHashMap_values_closure, _LinkedIdentityHashMap, _LinkedCustomHashMap, _LinkedCustomHashMap_closure, LinkedHashMapCell, LinkedHashMapKeyIterable, LinkedHashMapKeyIterator, IterableBase, ListBase, ListMixin, Maps_mapToString_closure, ListQueue, _ListQueueIterator, _convertJsonToDart_closure, _convertJsonToDart_walk, Converter, JsonDecoder, NoSuchMethodError_toString_closure, Duration, Duration_toString_sixDigits, Duration_toString_twoDigits, Error, NullThrownError, ArgumentError, RangeError, UnsupportedError, StateError, ConcurrentModificationError, StackOverflowError, CyclicInitializationError, _ExceptionImplementation, FormatException, Expando, Function, Iterator, Map, Null, Object, StackTrace, StringBuffer, Symbol, _ChildrenElementList, Interceptor_ListMixin, Interceptor_ListMixin_ImmutableListMixin, HttpRequest_getString_closure, HttpRequest_request_closure1, HttpRequest_request_closure, HttpRequest_request_closure0, _ChildNodeListLazy, Interceptor_ListMixin0, Interceptor_ListMixin_ImmutableListMixin0, _EventStream, _ElementEventStreamImpl, _EventStreamSubscription, EventStreamProvider, ImmutableListMixin, FixedSizeListIterator, _DOMWindowCrossFrame, ReceivePort, TypedData_ListMixin, TypedData_ListMixin_FixedLengthListMixin, FilteredElementList, FilteredElementList__filtered_closure, HtmlElement, AnchorElement, AnimationEvent, AreaElement, AudioElement, AutocompleteErrorEvent, BRElement, BaseElement, BeforeLoadEvent, BodyElement, ButtonElement, CDataSection, CanvasElement, CharacterData, CloseEvent, Comment, CompositionEvent, ContentElement, CssFontFaceLoadEvent, CustomEvent, DListElement, DataListElement, DetailsElement, DeviceMotionEvent, DeviceOrientationEvent, DialogElement, DivElement, Document, DocumentFragment, DocumentType, DomError, DomException, Element, EmbedElement, ErrorEvent, Event, EventTarget, FieldSetElement, FileError, FocusEvent, FormElement, HRElement, HashChangeEvent, HeadElement, HeadingElement, HtmlCollection, HtmlDocument, HtmlFormControlsCollection, HtmlHtmlElement, HtmlOptionsCollection, HttpRequest, IFrameElement, ImageElement, InputElement, KeyboardEvent, KeygenElement, LIElement, LabelElement, LegendElement, LinkElement, MapElement, MediaElement, MediaError, MediaKeyError, MediaKeyEvent, MediaKeyMessageEvent, MediaKeyNeededEvent, MediaStreamEvent, MediaStreamTrackEvent, MenuElement, MessageEvent, MetaElement, MeterElement, MidiConnectionEvent, MidiMessageEvent, ModElement, MouseEvent, MutationEvent, Navigator, NavigatorUserMediaError, Node, NodeList, Notation, OListElement, ObjectElement, OptGroupElement, OptionElement, OutputElement, OverflowEvent, PageTransitionEvent, ParagraphElement, ParamElement, PopStateEvent, PositionError, PreElement, ProcessingInstruction, ProgressElement, ProgressEvent, QuoteElement, ResourceProgressEvent, RtcDataChannelEvent, RtcDtmfToneChangeEvent, RtcIceCandidateEvent, ScriptElement, SecurityPolicyViolationEvent, SelectElement, ShadowElement, ShadowRoot, SourceElement, SpanElement, SpeechInputEvent, SpeechRecognitionError, SpeechRecognitionEvent, SpeechSynthesisEvent, StorageEvent, StyleElement, TableCaptionElement, TableCellElement, TableColElement, TableElement, TableRowElement, TableSectionElement, TemplateElement, Text, TextAreaElement, TextEvent, TitleElement, TouchEvent, TrackElement, TrackEvent, TransitionEvent, UIEvent, UListElement, UnknownElement, VideoElement, WheelEvent, Window, XmlHttpRequestEventTarget, _Attr, _Entity, _HTMLAppletElement, _HTMLBaseFontElement, _HTMLDirectoryElement, _HTMLFontElement, _HTMLFrameElement, _HTMLFrameSetElement, _HTMLMarqueeElement, _XMLHttpRequestProgressEvent, VersionChangeEvent, AElement, AltGlyphElement, AnimateElement, AnimateMotionElement, AnimateTransformElement, AnimatedNumberList, AnimationElement, CircleElement, ClipPathElement, DefsElement, DescElement, EllipseElement, FEBlendElement, FEColorMatrixElement, FEComponentTransferElement, FECompositeElement, FEConvolveMatrixElement, FEDiffuseLightingElement, FEDisplacementMapElement, FEDistantLightElement, FEFloodElement, FEFuncAElement, FEFuncBElement, FEFuncGElement, FEFuncRElement, FEGaussianBlurElement, FEImageElement, FEMergeElement, FEMergeNodeElement, FEMorphologyElement, FEOffsetElement, FEPointLightElement, FESpecularLightingElement, FESpotLightElement, FETileElement, FETurbulenceElement, FilterElement, ForeignObjectElement, GElement, GraphicsElement, ImageElement0, LineElement, LinearGradientElement, MarkerElement, MaskElement, MetadataElement, PathElement, PatternElement, PolygonElement, PolylineElement, RadialGradientElement, RectElement, ScriptElement0, SetElement, StopElement, StyleElement0, SvgDocument, SvgElement, SvgSvgElement, SwitchElement, SymbolElement, TSpanElement, TextContentElement, TextElement, TextPathElement, TextPositioningElement, TitleElement0, UseElement, ViewElement, ZoomEvent, _GradientElement, _SVGAltGlyphDefElement, _SVGAltGlyphItemElement, _SVGAnimateColorElement, _SVGComponentTransferFunctionElement, _SVGCursorElement, _SVGFEDropShadowElement, _SVGFontElement, _SVGFontFaceElement, _SVGFontFaceFormatElement, _SVGFontFaceNameElement, _SVGFontFaceSrcElement, _SVGFontFaceUriElement, _SVGGlyphElement, _SVGGlyphRefElement, _SVGHKernElement, _SVGMPathElement, _SVGMissingGlyphElement, _SVGTRefElement, _SVGVKernElement, AudioProcessingEvent, OfflineAudioCompletionEvent, ContextEvent, SqlError, TypedData, Uint8List, Closure$2, Closure$0, Closure$7, Closure$1, Closure$4, Closure$5];
|
| + return [JS_CONST, Interceptor, JSBool, JSNull, JavaScriptObject, PlainJavaScriptObject, UnknownJavaScriptObject, JSArray, JSMutableArray, JSFixedArray, JSExtendableArray, JSNumber, JSInt, JSDouble, JSString, CloseToken, JsIsolateSink, _Manager, _IsolateContext, _EventLoop, _EventLoop__runHelper_next, _IsolateEvent, _MainManagerStub, IsolateNatives__processWorkerMessage_closure, _BaseSendPort, _BaseSendPort_call_closure, _NativeJsSendPort, _NativeJsSendPort_send_closure, _NativeJsSendPort_send__closure, _WorkerSendPort, _WorkerSendPort_send_closure, ReceivePortImpl, _waitForPendingPorts_closure, _PendingSendPortFinder, _PendingSendPortFinder_visitList_closure, _PendingSendPortFinder_visitMap_closure, _JsSerializer, _JsCopier, _JsDeserializer, _JsVisitedMap, _MessageTraverserVisitedMap, _MessageTraverser, _Copier, _Copier_visitMap_closure, _Serializer, _Deserializer, TimerImpl, TimerImpl_internalCallback, TimerImpl_internalCallback0, TimerImpl$periodic_closure, ConstantMap, ConstantStringMap, ConstantStringMap_forEach_closure, ConstantStringMap_values_closure, _ConstantMapKeyIterable, TypeErrorDecoder, NullError, JsNoSuchMethodError, UnknownJsTypeError, unwrapException_saveStackTrace, _StackTrace, invokeClosure_closure, invokeClosure_closure0, invokeClosure_closure1, invokeClosure_closure2, invokeClosure_closure3, Closure, BoundClosure, CastErrorImplementation, applyExperimentalFixup_newGetTagDartFunction, ListIterable, ListIterator, MappedIterable, MappedIterator, MappedListIterable, FixedLengthListMixin, Future, Future_wait_handleError, Future_wait_closure, _Completer, _AsyncCompleter, _Future, BoundClosure$2, _Future__addListener_closure, _Future__chainFutures_closure, _Future__chainFutures_closure0, _Future__asyncComplete_closure, _Future__asyncCompleteError_closure, _Future__propagateToListeners_closure, _Future__propagateToListeners_closure0, _Future__propagateToListeners__closure, _Future__propagateToListeners__closure0, Stream, Stream_forEach_closure, Stream_forEach__closure, Stream_forEach__closure0, Stream_forEach_closure0, Stream_length_closure, Stream_length_closure0, Stream_toList_closure, Stream_toList_closure0, StreamSubscription, EventSink, _EventSink, _BufferingStreamSubscription, BoundClosure$0, _DelayedEvent, _DelayedData, _DelayedError, _DelayedDone, _PendingEvents, _PendingEvents_schedule_closure, _StreamImplEvents, _cancelAndError_closure, _ForwardingStream, _ForwardingStreamSubscription, BoundClosure$1, _MapStream, Timer, ZoneSpecification, _ZoneSpecification, ZoneDelegate, Zone, _ZoneDelegate, _CustomizedZone, _CustomizedZone_bindCallback_closure, _CustomizedZone_bindCallback_closure0, _CustomizedZone_bindUnaryCallback_closure, _CustomizedZone_bindUnaryCallback_closure0, _rootHandleUncaughtError_closure, _rootFork_closure, _HashMap, _HashMap_values_closure, HashMapKeyIterable, HashMapKeyIterator, _LinkedHashMap, _LinkedHashMap_values_closure, _LinkedIdentityHashMap, _LinkedCustomHashMap, _LinkedCustomHashMap_closure, LinkedHashMapCell, LinkedHashMapKeyIterable, LinkedHashMapKeyIterator, IterableBase, ListMixin, Maps_mapToString_closure, ListQueue, _ListQueueIterator, _convertJsonToDart_closure, _convertJsonToDart_walk, Converter, JsonDecoder, NoSuchMethodError_toString_closure, Duration, Duration_toString_sixDigits, Duration_toString_twoDigits, Error, NullThrownError, ArgumentError, RangeError, UnsupportedError, StateError, ConcurrentModificationError, StackOverflowError, CyclicInitializationError, Exception, _ExceptionImplementation, FormatException, Expando, Function, Iterator, Map, Null, Object, StackTrace, StringBuffer, Symbol, HttpRequest_getString_closure, HttpRequest_request_closure1, HttpRequest_request_closure, HttpRequest_request_closure0, _EventStream, _ElementEventStreamImpl, _EventStreamSubscription, EventStreamProvider, _DOMWindowCrossFrame, ReceivePort, _Random, TypedData_ListMixin, TypedData_ListMixin_FixedLengthListMixin, PirateName, HtmlElement, AnchorElement, AnimationEvent, AreaElement, AudioElement, AutocompleteErrorEvent, BRElement, BaseElement, BeforeLoadEvent, BodyElement, ButtonElement, CDataSection, CanvasElement, CharacterData, CloseEvent, Comment, CompositionEvent, ContentElement, CssFontFaceLoadEvent, CustomEvent, DListElement, DataListElement, DetailsElement, DeviceMotionEvent, DeviceOrientationEvent, DialogElement, DivElement, Document, DocumentFragment, DocumentType, DomError, DomException, Element, EmbedElement, ErrorEvent, Event, EventTarget, FieldSetElement, FileError, FocusEvent, FormElement, HRElement, HashChangeEvent, HeadElement, HeadingElement, HtmlDocument, HtmlHtmlElement, HttpRequest, IFrameElement, ImageElement, InputElement, KeyboardEvent, KeygenElement, LIElement, LabelElement, LegendElement, LinkElement, MapElement, MediaElement, MediaError, MediaKeyError, MediaKeyEvent, MediaKeyMessageEvent, MediaKeyNeededEvent, MediaStreamEvent, MediaStreamTrackEvent, MenuElement, MessageEvent, MetaElement, MeterElement, MidiConnectionEvent, MidiMessageEvent, ModElement, MouseEvent, MutationEvent, Navigator, NavigatorUserMediaError, Node, Notation, OListElement, ObjectElement, OptGroupElement, OptionElement, OutputElement, OverflowEvent, PageTransitionEvent, ParagraphElement, ParamElement, PopStateEvent, PositionError, PreElement, ProcessingInstruction, ProgressElement, ProgressEvent, QuoteElement, ResourceProgressEvent, RtcDataChannelEvent, RtcDtmfToneChangeEvent, RtcIceCandidateEvent, ScriptElement, SecurityPolicyViolationEvent, SelectElement, ShadowElement, ShadowRoot, SourceElement, SpanElement, SpeechInputEvent, SpeechRecognitionError, SpeechRecognitionEvent, SpeechSynthesisEvent, StorageEvent, StyleElement, TableCaptionElement, TableCellElement, TableColElement, TableElement, TableRowElement, TableSectionElement, TemplateElement, Text, TextAreaElement, TextEvent, TitleElement, TouchEvent, TrackElement, TrackEvent, TransitionEvent, UIEvent, UListElement, UnknownElement, VideoElement, WheelEvent, Window, XmlHttpRequestEventTarget, _Attr, _Entity, _HTMLAppletElement, _HTMLBaseFontElement, _HTMLDirectoryElement, _HTMLFontElement, _HTMLFrameElement, _HTMLFrameSetElement, _HTMLMarqueeElement, _XMLHttpRequestProgressEvent, VersionChangeEvent, AElement, AltGlyphElement, AnimateElement, AnimateMotionElement, AnimateTransformElement, AnimatedNumberList, AnimatedString, AnimationElement, CircleElement, ClipPathElement, DefsElement, DescElement, EllipseElement, FEBlendElement, FEColorMatrixElement, FEComponentTransferElement, FECompositeElement, FEConvolveMatrixElement, FEDiffuseLightingElement, FEDisplacementMapElement, FEDistantLightElement, FEFloodElement, FEFuncAElement, FEFuncBElement, FEFuncGElement, FEFuncRElement, FEGaussianBlurElement, FEImageElement, FEMergeElement, FEMergeNodeElement, FEMorphologyElement, FEOffsetElement, FEPointLightElement, FESpecularLightingElement, FESpotLightElement, FETileElement, FETurbulenceElement, FilterElement, ForeignObjectElement, GElement, GraphicsElement, ImageElement0, LineElement, LinearGradientElement, MarkerElement, MaskElement, MetadataElement, PathElement, PatternElement, PolygonElement, PolylineElement, RadialGradientElement, RectElement, ScriptElement0, SetElement, StopElement, StyleElement0, SvgDocument, SvgElement, SvgSvgElement, SwitchElement, SymbolElement, TSpanElement, TextContentElement, TextElement, TextPathElement, TextPositioningElement, TitleElement0, UseElement, ViewElement, ZoomEvent, _GradientElement, _SVGAltGlyphDefElement, _SVGAltGlyphItemElement, _SVGAnimateColorElement, _SVGComponentTransferFunctionElement, _SVGCursorElement, _SVGFEDropShadowElement, _SVGFontElement, _SVGFontFaceElement, _SVGFontFaceFormatElement, _SVGFontFaceNameElement, _SVGFontFaceSrcElement, _SVGFontFaceUriElement, _SVGGlyphElement, _SVGGlyphRefElement, _SVGHKernElement, _SVGMPathElement, _SVGMissingGlyphElement, _SVGTRefElement, _SVGVKernElement, AudioProcessingEvent, OfflineAudioCompletionEvent, ContextEvent, SqlError, TypedData, Uint8List, Closure$2, Closure$0, Closure$7, Closure$1, Closure$4, Closure$5];
|
| }
|
|
|