| Index: pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/common/dart_sdk.js b/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| index 5364eafb46f4c705baa3974b067d6a353df0bec1..fcabfdec0c29f83f1363d85dfaed434da6b7f85e 100644
|
| --- a/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| @@ -7211,30 +7211,8 @@
|
| ListIterable[dart.implements] = () => [_internal.EfficientLength];
|
| dart.setSignature(ListIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(_internal.ListIterable$(E), [])}),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, [])
|
| - }),
|
| - methods: () => ({
|
| - forEach: dart.definiteFunctionType(dart.void, [ETovoid()]),
|
| - every: dart.definiteFunctionType(core.bool, [ETobool()]),
|
| - any: dart.definiteFunctionType(core.bool, [ETobool()]),
|
| - firstWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()}),
|
| - lastWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()}),
|
| - singleWhere: dart.definiteFunctionType(E, [ETobool()]),
|
| - where: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - map: dart.definiteFunctionType(T => [core.Iterable$(T), [dart.functionType(T, [E])]]),
|
| - reduce: dart.definiteFunctionType(E, [dynamicAndEToE()]),
|
| - fold: dart.definiteFunctionType(T => [T, [T, dart.functionType(T, [T, E])]]),
|
| - skip: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - skipWhile: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - take: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - takeWhile: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - toList: dart.definiteFunctionType(core.List$(E), [], {growable: core.bool}),
|
| - toSet: dart.definiteFunctionType(core.Set$(E), [])
|
| - })
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| + methods: () => ({reduce: dart.definiteFunctionType(E, [dynamicAndEToE()])})
|
| });
|
| dart.defineExtensionMembers(ListIterable, [
|
| 'forEach',
|
| @@ -7360,12 +7338,6 @@
|
| getters: () => ({
|
| [_endIndex]: dart.definiteFunctionType(core.int, []),
|
| [_startIndex]: dart.definiteFunctionType(core.int, [])
|
| - }),
|
| - methods: () => ({
|
| - elementAt: dart.definiteFunctionType(E, [core.int]),
|
| - skip: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - take: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - toList: dart.definiteFunctionType(core.List$(E), [], {growable: core.bool})
|
| })
|
| });
|
| dart.defineExtensionMembers(SubListIterable, [
|
| @@ -7480,13 +7452,7 @@
|
| [_iterable$]: IterableOfS(),
|
| [_f]: _TransformationOfS$T()
|
| }),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(T), []),
|
| - first: dart.definiteFunctionType(T, []),
|
| - last: dart.definiteFunctionType(T, []),
|
| - single: dart.definiteFunctionType(T, [])
|
| - }),
|
| - methods: () => ({elementAt: dart.definiteFunctionType(T, [core.int])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(T), [])})
|
| });
|
| dart.defineExtensionMembers(MappedIterable, [
|
| 'elementAt',
|
| @@ -7579,8 +7545,7 @@
|
| fields: () => ({
|
| [_source]: IterableOfS(),
|
| [_f]: _TransformationOfS$T()
|
| - }),
|
| - methods: () => ({elementAt: dart.definiteFunctionType(T, [core.int])})
|
| + })
|
| });
|
| dart.defineExtensionMembers(MappedListIterable, ['elementAt', 'length']);
|
| return MappedListIterable;
|
| @@ -7929,8 +7894,7 @@
|
| [_iterable$]: IterableOfE(),
|
| [_skipCount]: core.int
|
| }),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| - methods: () => ({skip: dart.definiteFunctionType(core.Iterable$(E), [core.int])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])})
|
| });
|
| dart.defineExtensionMembers(SkipIterable, ['skip', 'iterator']);
|
| return SkipIterable;
|
| @@ -8156,31 +8120,8 @@
|
| EmptyIterable[dart.implements] = () => [_internal.EfficientLength];
|
| dart.setSignature(EmptyIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(_internal.EmptyIterable$(E), [])}),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, [])
|
| - }),
|
| - methods: () => ({
|
| - forEach: dart.definiteFunctionType(dart.void, [ETovoid()]),
|
| - elementAt: dart.definiteFunctionType(E, [core.int]),
|
| - every: dart.definiteFunctionType(core.bool, [ETobool()]),
|
| - any: dart.definiteFunctionType(core.bool, [ETobool()]),
|
| - firstWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()}),
|
| - lastWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()}),
|
| - singleWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()}),
|
| - where: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - map: dart.definiteFunctionType(T => [core.Iterable$(T), [dart.functionType(T, [E])]]),
|
| - reduce: dart.definiteFunctionType(E, [EAndEToE()]),
|
| - fold: dart.definiteFunctionType(T => [T, [T, dart.functionType(T, [T, E])]]),
|
| - skip: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - skipWhile: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - take: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - takeWhile: dart.definiteFunctionType(core.Iterable$(E), [ETobool()]),
|
| - toList: dart.definiteFunctionType(core.List$(E), [], {growable: core.bool}),
|
| - toSet: dart.definiteFunctionType(core.Set$(E), [])
|
| - })
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| + methods: () => ({singleWhere: dart.definiteFunctionType(E, [ETobool()], {orElse: VoidToE()})})
|
| });
|
| dart.defineExtensionMembers(EmptyIterable, [
|
| 'forEach',
|
| @@ -8379,8 +8320,7 @@
|
| dart.addSimpleTypeTests(_internal._ListIndicesIterable);
|
| dart.setSignature(_internal._ListIndicesIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(_internal._ListIndicesIterable, [core.List])}),
|
| - fields: () => ({[_backedList]: core.List}),
|
| - methods: () => ({elementAt: dart.definiteFunctionType(core.int, [core.int])})
|
| + fields: () => ({[_backedList]: core.List})
|
| });
|
| dart.defineExtensionMembers(_internal._ListIndicesIterable, ['elementAt', 'length']);
|
| const _values = Symbol('_values');
|
| @@ -8509,8 +8449,7 @@
|
| }
|
| dart.setSignature(ReversedListIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(_internal.ReversedListIterable$(E), [IterableOfE()])}),
|
| - fields: () => ({[_source]: IterableOfE()}),
|
| - methods: () => ({elementAt: dart.definiteFunctionType(E, [core.int])})
|
| + fields: () => ({[_source]: IterableOfE()})
|
| });
|
| dart.defineExtensionMembers(ReversedListIterable, ['elementAt', 'length']);
|
| return ReversedListIterable;
|
| @@ -12677,12 +12616,6 @@
|
| return new Map();
|
| }
|
| }
|
| - dart.setSignature(Es6LinkedHashMap, {
|
| - methods: () => ({
|
| - [_getTableCell]: dart.definiteFunctionType(_js_helper.LinkedHashMapCell$(K, V), [dart.dynamic, dart.dynamic]),
|
| - [_getTableBucket]: dart.definiteFunctionType(core.List$(_js_helper.LinkedHashMapCell$(K, V)), [dart.dynamic, dart.dynamic])
|
| - })
|
| - });
|
| return Es6LinkedHashMap;
|
| });
|
| _js_helper.Es6LinkedHashMap = Es6LinkedHashMap();
|
| @@ -12747,8 +12680,7 @@
|
| dart.setSignature(LinkedHashMapKeyIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(_js_helper.LinkedHashMapKeyIterable$(E), [JsLinkedHashMapOfE$dynamic()])}),
|
| fields: () => ({[_map]: JsLinkedHashMapOfE$dynamic()}),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| - methods: () => ({forEach: dart.definiteFunctionType(dart.void, [ETovoid()])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])})
|
| });
|
| dart.defineExtensionMembers(LinkedHashMapKeyIterable, [
|
| 'contains',
|
| @@ -13196,10 +13128,7 @@
|
| [_pattern]: core.String,
|
| [_index$0]: core.int
|
| }),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(core.Match), []),
|
| - first: dart.definiteFunctionType(core.Match, [])
|
| - })
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(core.Match), [])})
|
| });
|
| dart.defineExtensionMembers(_js_helper._StringAllMatchesIterable, ['iterator', 'first']);
|
| _js_helper._StringAllMatchesIterator = class _StringAllMatchesIterator extends core.Object {
|
| @@ -15144,8 +15073,7 @@
|
| }),
|
| methods: () => ({
|
| _get: dart.definiteFunctionType(typed_data.Float32x4, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Float32x4]),
|
| - sublist: dart.definiteFunctionType(core.List$(typed_data.Float32x4), [core.int], [core.int])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Float32x4])
|
| })
|
| });
|
| dart.defineExtensionMembers(_native_typed_data.NativeFloat32x4List, [
|
| @@ -15777,8 +15705,7 @@
|
| }),
|
| methods: () => ({
|
| _get: dart.definiteFunctionType(typed_data.Int32x4, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Int32x4]),
|
| - sublist: dart.definiteFunctionType(core.List$(typed_data.Int32x4), [core.int], [core.int])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Int32x4])
|
| })
|
| });
|
| dart.defineExtensionMembers(_native_typed_data.NativeInt32x4List, [
|
| @@ -15894,8 +15821,7 @@
|
| }),
|
| methods: () => ({
|
| _get: dart.definiteFunctionType(typed_data.Float64x2, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Float64x2]),
|
| - sublist: dart.definiteFunctionType(core.List$(typed_data.Float64x2), [core.int], [core.int])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, typed_data.Float64x2])
|
| })
|
| });
|
| dart.defineExtensionMembers(_native_typed_data.NativeFloat64x2List, [
|
| @@ -16260,8 +16186,7 @@
|
| getters: () => ({length: dart.definiteFunctionType(core.int, [])}),
|
| methods: () => ({
|
| _get: dart.definiteFunctionType(core.double, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, core.num]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfdouble()], [core.int])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, core.num])
|
| })
|
| });
|
| dart.defineExtensionMembers(_native_typed_data.NativeTypedArrayOfDouble, ['_get', '_set', 'setRange', 'length']);
|
| @@ -16294,10 +16219,7 @@
|
| _native_typed_data.NativeTypedArrayOfInt[dart.implements] = () => [ListOfint()];
|
| dart.setSignature(_native_typed_data.NativeTypedArrayOfInt, {
|
| getters: () => ({length: dart.definiteFunctionType(core.int, [])}),
|
| - methods: () => ({
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, core.int]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfint()], [core.int])
|
| - })
|
| + methods: () => ({_set: dart.definiteFunctionType(dart.void, [core.int, core.int])})
|
| });
|
| dart.defineExtensionMembers(_native_typed_data.NativeTypedArrayOfInt, ['_set', 'setRange', 'length']);
|
| dart.defineExtensionNames([
|
| @@ -16341,7 +16263,6 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeFloat32List, [ListOfdouble()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeFloat32List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({[dartx.sublist]: dart.definiteFunctionType(core.List$(core.double), [core.int], [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeFloat32List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeFloat32List, [dart.dynamic, dart.dynamic]),
|
| @@ -16391,7 +16312,6 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeFloat64List, [ListOfdouble()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeFloat64List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({[dartx.sublist]: dart.definiteFunctionType(core.List$(core.double), [core.int], [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeFloat64List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeFloat64List, [dart.dynamic, dart.dynamic]),
|
| @@ -16446,10 +16366,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeInt16List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeInt16List, [_native_typed_data.NativeByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeInt16List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeInt16List, [dart.dynamic, dart.dynamic]),
|
| @@ -16504,10 +16421,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeInt32List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeInt32List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeInt32List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeInt32List, [dart.dynamic, dart.dynamic]),
|
| @@ -16562,10 +16476,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeInt8List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeInt8List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeInt8List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeInt8List, [dart.dynamic, dart.dynamic]),
|
| @@ -16620,10 +16531,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeUint16List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeUint16List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeUint16List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeUint16List, [dart.dynamic, dart.dynamic]),
|
| @@ -16678,10 +16586,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeUint32List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeUint32List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeUint32List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeUint32List, [dart.dynamic, dart.dynamic]),
|
| @@ -16743,10 +16648,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeUint8ClampedList, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeUint8ClampedList, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeUint8ClampedList, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeUint8ClampedList, [dart.dynamic, dart.dynamic]),
|
| @@ -16809,10 +16711,7 @@
|
| fromList: dart.definiteFunctionType(_native_typed_data.NativeUint8List, [ListOfint()]),
|
| view: dart.definiteFunctionType(_native_typed_data.NativeUint8List, [typed_data.ByteBuffer, core.int, core.int])
|
| }),
|
| - methods: () => ({
|
| - [dartx._get]: dart.definiteFunctionType(core.int, [core.int]),
|
| - [dartx.sublist]: dart.definiteFunctionType(core.List$(core.int), [core.int], [core.int])
|
| - }),
|
| + methods: () => ({[dartx._get]: dart.definiteFunctionType(core.int, [core.int])}),
|
| statics: () => ({
|
| _create1: dart.definiteFunctionType(_native_typed_data.NativeUint8List, [dart.dynamic]),
|
| _create2: dart.definiteFunctionType(_native_typed_data.NativeUint8List, [dart.dynamic, dart.dynamic]),
|
| @@ -17626,10 +17525,7 @@
|
| dart.setSignature(_ControllerStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._ControllerStream$(T), [_StreamControllerLifecycleOfT()])}),
|
| fields: () => ({[_controller$]: _StreamControllerLifecycleOfT()}),
|
| - methods: () => ({
|
| - [_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool]),
|
| - '==': dart.definiteFunctionType(core.bool, [core.Object])
|
| - })
|
| + methods: () => ({'==': dart.definiteFunctionType(core.bool, [core.Object])})
|
| });
|
| return _ControllerStream;
|
| });
|
| @@ -18621,10 +18517,7 @@
|
| constructors: () => ({new: dart.definiteFunctionType(async._AsBroadcastStreamController$(T), [VoidTovoid(), VoidTovoid()])}),
|
| fields: () => ({[_pending]: _StreamImplEventsOfT()}),
|
| getters: () => ({[_hasPending]: dart.definiteFunctionType(core.bool, [])}),
|
| - methods: () => ({
|
| - [_addPendingEvent]: dart.definiteFunctionType(dart.void, [async._DelayedEvent]),
|
| - add: dart.definiteFunctionType(dart.void, [T])
|
| - })
|
| + methods: () => ({[_addPendingEvent]: dart.definiteFunctionType(dart.void, [async._DelayedEvent])})
|
| });
|
| return _AsBroadcastStreamController;
|
| });
|
| @@ -19959,10 +19852,7 @@
|
| dart.setSignature(StreamView, {
|
| constructors: () => ({new: dart.definiteFunctionType(async.StreamView$(T), [StreamOfT()])}),
|
| fields: () => ({[_stream]: StreamOfT()}),
|
| - methods: () => ({
|
| - asBroadcastStream: dart.definiteFunctionType(async.Stream$(T), [], {onListen: StreamSubscriptionOfTTovoid(), onCancel: StreamSubscriptionOfTTovoid()}),
|
| - listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool})
|
| - })
|
| + methods: () => ({listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool})})
|
| });
|
| return StreamView;
|
| });
|
| @@ -20667,8 +20557,7 @@
|
| fields: () => ({
|
| [_pending]: _EventGeneratorOfT(),
|
| [_isUsed]: core.bool
|
| - }),
|
| - methods: () => ({[_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool])})
|
| + })
|
| });
|
| return _GeneratedStreamImpl;
|
| });
|
| @@ -21547,7 +21436,6 @@
|
| [_subscription]: StreamSubscriptionOfS()
|
| }),
|
| methods: () => ({
|
| - [_add$]: dart.definiteFunctionType(dart.void, [T]),
|
| [_handleData]: dart.definiteFunctionType(dart.void, [S]),
|
| [_handleError]: dart.definiteFunctionType(dart.void, [dart.dynamic, core.StackTrace]),
|
| [_handleDone]: dart.definiteFunctionType(dart.void, [])
|
| @@ -21599,8 +21487,7 @@
|
| }
|
| dart.setSignature(_WhereStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._WhereStream$(T), [StreamOfT(), _PredicateOfT()])}),
|
| - fields: () => ({[_test]: _PredicateOfT()}),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])})
|
| + fields: () => ({[_test]: _PredicateOfT()})
|
| });
|
| return _WhereStream;
|
| });
|
| @@ -21637,8 +21524,7 @@
|
| }
|
| dart.setSignature(_MapStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._MapStream$(S, T), [StreamOfS(), _TransformationOfS$T()])}),
|
| - fields: () => ({[_transform]: _TransformationOfS$T()}),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [S, _EventSinkOfT()])})
|
| + fields: () => ({[_transform]: _TransformationOfS$T()})
|
| });
|
| return _MapStream;
|
| });
|
| @@ -21670,8 +21556,7 @@
|
| }
|
| dart.setSignature(_ExpandStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._ExpandStream$(S, T), [StreamOfS(), _TransformationOfS$IterableOfT()])}),
|
| - fields: () => ({[_expand]: _TransformationOfS$IterableOfT()}),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [S, _EventSinkOfT()])})
|
| + fields: () => ({[_expand]: _TransformationOfS$IterableOfT()})
|
| });
|
| return _ExpandStream;
|
| });
|
| @@ -21760,11 +21645,7 @@
|
| }
|
| dart.setSignature(_TakeStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._TakeStream$(T), [StreamOfT(), core.int])}),
|
| - fields: () => ({[_count]: core.int}),
|
| - methods: () => ({
|
| - [_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool]),
|
| - [_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])
|
| - })
|
| + fields: () => ({[_count]: core.int})
|
| });
|
| return _TakeStream;
|
| });
|
| @@ -21838,8 +21719,7 @@
|
| }
|
| dart.setSignature(_TakeWhileStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._TakeWhileStream$(T), [StreamOfT(), _PredicateOfT()])}),
|
| - fields: () => ({[_test]: _PredicateOfT()}),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])})
|
| + fields: () => ({[_test]: _PredicateOfT()})
|
| });
|
| return _TakeWhileStream;
|
| });
|
| @@ -21872,11 +21752,7 @@
|
| }
|
| dart.setSignature(_SkipStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._SkipStream$(T), [StreamOfT(), core.int])}),
|
| - fields: () => ({[_count]: core.int}),
|
| - methods: () => ({
|
| - [_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool]),
|
| - [_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])
|
| - })
|
| + fields: () => ({[_count]: core.int})
|
| });
|
| return _SkipStream;
|
| });
|
| @@ -21922,11 +21798,7 @@
|
| }
|
| dart.setSignature(_SkipWhileStream, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._SkipWhileStream$(T), [StreamOfT(), _PredicateOfT()])}),
|
| - fields: () => ({[_test]: _PredicateOfT()}),
|
| - methods: () => ({
|
| - [_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool]),
|
| - [_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])
|
| - })
|
| + fields: () => ({[_test]: _PredicateOfT()})
|
| });
|
| return _SkipWhileStream;
|
| });
|
| @@ -21980,7 +21852,6 @@
|
| [_equals]: _EqualityOfT(),
|
| [_previous$]: core.Object
|
| }),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])}),
|
| sfields: () => ({_SENTINEL: core.Object})
|
| });
|
| return _DistinctStream;
|
| @@ -22121,7 +21992,6 @@
|
| }),
|
| getters: () => ({[_isSubscribed]: dart.definiteFunctionType(core.bool, [])}),
|
| methods: () => ({
|
| - [_add$]: dart.definiteFunctionType(dart.void, [T]),
|
| [_handleData]: dart.definiteFunctionType(dart.void, [S]),
|
| [_handleError]: dart.definiteFunctionType(dart.void, [dart.dynamic], [dart.dynamic]),
|
| [_handleDone]: dart.definiteFunctionType(dart.void, [])
|
| @@ -22289,7 +22159,6 @@
|
| }
|
| dart.setSignature(_StreamHandlerTransformer, {
|
| constructors: () => ({new: dart.definiteFunctionType(async._StreamHandlerTransformer$(S, T), [], {handleData: SAndEventSinkOfTTovoid(), handleError: ObjectAndStackTraceAndEventSinkOfTTovoid(), handleDone: EventSinkOfTTovoid()})}),
|
| - methods: () => ({bind: dart.definiteFunctionType(async.Stream$(T), [StreamOfS()])}),
|
| statics: () => ({
|
| _defaultHandleData: dart.definiteFunctionType(dart.void, [dart.dynamic, async.EventSink]),
|
| _defaultHandleError: dart.definiteFunctionType(dart.void, [dart.dynamic, core.StackTrace, async.EventSink]),
|
| @@ -23870,11 +23739,6 @@
|
| [_equals$]: _EqualityOfK(),
|
| [_hashCode]: _HasherOfK(),
|
| [_validKey]: _PredicateOfObject()
|
| - }),
|
| - methods: () => ({
|
| - _get: dart.definiteFunctionType(V, [core.Object]),
|
| - _set: dart.definiteFunctionType(dart.void, [K, V]),
|
| - remove: dart.definiteFunctionType(V, [core.Object])
|
| })
|
| });
|
| dart.defineExtensionMembers(_CustomHashMap, ['_get', '_set', 'containsKey', 'remove']);
|
| @@ -23917,8 +23781,7 @@
|
| dart.setSignature(_HashMapKeyIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(collection._HashMapKeyIterable$(E), [_HashMapOfE$dynamic()])}),
|
| fields: () => ({[_map$0]: _HashMapOfE$dynamic()}),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| - methods: () => ({forEach: dart.definiteFunctionType(dart.void, [ETovoid()])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])})
|
| });
|
| dart.defineExtensionMembers(_HashMapKeyIterable, [
|
| 'contains',
|
| @@ -24115,19 +23978,7 @@
|
| [_map$0]: dart.dynamic,
|
| [_modifications$]: core.int
|
| }),
|
| - getters: () => ({
|
| - keys: dart.definiteFunctionType(core.Iterable$(K), []),
|
| - values: dart.definiteFunctionType(core.Iterable$(V), [])
|
| - }),
|
| - methods: () => ({
|
| - addAll: dart.definiteFunctionType(dart.void, [MapOfK$V()]),
|
| - _get: dart.definiteFunctionType(V, [core.Object]),
|
| - _set: dart.definiteFunctionType(dart.void, [K, V]),
|
| - putIfAbsent: dart.definiteFunctionType(V, [K, VoidToV()]),
|
| - remove: dart.definiteFunctionType(V, [core.Object]),
|
| - forEach: dart.definiteFunctionType(dart.void, [KAndVTovoid()]),
|
| - [_modified$]: dart.definiteFunctionType(dart.void, [])
|
| - })
|
| + methods: () => ({[_modified$]: dart.definiteFunctionType(dart.void, [])})
|
| });
|
| dart.defineExtensionMembers(_Es6LinkedIdentityHashMap, [
|
| 'containsKey',
|
| @@ -24197,8 +24048,7 @@
|
| [_map$0]: dart.dynamic,
|
| [_isKeys]: core.bool
|
| }),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| - methods: () => ({forEach: dart.definiteFunctionType(dart.void, [ETovoid()])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])})
|
| });
|
| dart.defineExtensionMembers(_Es6MapIterable, [
|
| 'contains',
|
| @@ -24317,11 +24167,6 @@
|
| [_equals$]: _EqualityOfK(),
|
| [_hashCode]: _HasherOfK(),
|
| [_validKey]: _PredicateOfObject()
|
| - }),
|
| - methods: () => ({
|
| - _get: dart.definiteFunctionType(V, [core.Object]),
|
| - _set: dart.definiteFunctionType(dart.void, [K, V]),
|
| - remove: dart.definiteFunctionType(V, [core.Object])
|
| })
|
| });
|
| dart.defineExtensionMembers(_LinkedCustomHashMap, ['_get', '_set', 'containsKey', 'remove']);
|
| @@ -24693,11 +24538,7 @@
|
| }
|
| }
|
| dart.setSignature(_HashSetBase, {
|
| - methods: () => ({
|
| - difference: dart.definiteFunctionType(core.Set$(E), [SetOfObject()]),
|
| - intersection: dart.definiteFunctionType(core.Set$(E), [SetOfObject()]),
|
| - toSet: dart.definiteFunctionType(core.Set$(E), [])
|
| - })
|
| + methods: () => ({toSet: dart.definiteFunctionType(core.Set$(E), [])})
|
| });
|
| dart.defineExtensionMembers(_HashSetBase, ['toSet']);
|
| return _HashSetBase;
|
| @@ -24947,7 +24788,6 @@
|
| [_lookup]: dart.definiteFunctionType(E, [core.Object]),
|
| add: dart.definiteFunctionType(core.bool, [E]),
|
| [_add$0]: dart.definiteFunctionType(core.bool, [E]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfE()]),
|
| remove: dart.definiteFunctionType(core.bool, [core.Object]),
|
| [_remove]: dart.definiteFunctionType(core.bool, [core.Object]),
|
| [_computeElements]: dart.definiteFunctionType(core.List$(E), []),
|
| @@ -24998,9 +24838,6 @@
|
| return -1;
|
| }
|
| }
|
| - dart.setSignature(_IdentityHashSet, {
|
| - methods: () => ({[_newSet]: dart.definiteFunctionType(core.Set$(E), [])})
|
| - });
|
| return _IdentityHashSet;
|
| });
|
| collection._IdentityHashSet = _IdentityHashSet();
|
| @@ -25054,11 +24891,6 @@
|
| [_equality]: _EqualityOfE(),
|
| [_hasher]: _HasherOfE(),
|
| [_validKey]: _PredicateOfObject()
|
| - }),
|
| - methods: () => ({
|
| - [_newSet]: dart.definiteFunctionType(core.Set$(E), []),
|
| - add: dart.definiteFunctionType(core.bool, [E]),
|
| - lookup: dart.definiteFunctionType(E, [core.Object])
|
| })
|
| });
|
| dart.defineExtensionMembers(_CustomHashSet, ['contains']);
|
| @@ -25390,9 +25222,7 @@
|
| }),
|
| getters: () => ({
|
| iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - length: dart.definiteFunctionType(core.int, []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, [])
|
| + length: dart.definiteFunctionType(core.int, [])
|
| }),
|
| methods: () => ({
|
| [_newSet]: dart.definiteFunctionType(core.Set$(E), []),
|
| @@ -25401,13 +25231,10 @@
|
| [_contains]: dart.definiteFunctionType(core.bool, [core.Object]),
|
| lookup: dart.definiteFunctionType(E, [core.Object]),
|
| [_lookup]: dart.definiteFunctionType(E, [core.Object]),
|
| - forEach: dart.definiteFunctionType(dart.void, [ETovoid()]),
|
| add: dart.definiteFunctionType(core.bool, [E]),
|
| [_add$0]: dart.definiteFunctionType(core.bool, [E]),
|
| remove: dart.definiteFunctionType(core.bool, [core.Object]),
|
| [_remove]: dart.definiteFunctionType(core.bool, [core.Object]),
|
| - removeWhere: dart.definiteFunctionType(dart.void, [ETobool()]),
|
| - retainWhere: dart.definiteFunctionType(dart.void, [ETobool()]),
|
| [_filterWhere]: dart.definiteFunctionType(dart.void, [ETobool(), core.bool]),
|
| [_addHashTableEntry$]: dart.definiteFunctionType(core.bool, [dart.dynamic, E]),
|
| [_removeHashTableEntry$]: dart.definiteFunctionType(core.bool, [dart.dynamic, core.Object]),
|
| @@ -25463,9 +25290,6 @@
|
| return -1;
|
| }
|
| }
|
| - dart.setSignature(_LinkedIdentityHashSet, {
|
| - methods: () => ({[_newSet]: dart.definiteFunctionType(core.Set$(E), [])})
|
| - });
|
| return _LinkedIdentityHashSet;
|
| });
|
| collection._LinkedIdentityHashSet = _LinkedIdentityHashSet();
|
| @@ -25531,11 +25355,6 @@
|
| [_equality]: _EqualityOfE(),
|
| [_hasher]: _HasherOfE(),
|
| [_validKey]: _PredicateOfObject()
|
| - }),
|
| - methods: () => ({
|
| - [_newSet]: dart.definiteFunctionType(core.Set$(E), []),
|
| - add: dart.definiteFunctionType(core.bool, [E]),
|
| - lookup: dart.definiteFunctionType(E, [core.Object])
|
| })
|
| });
|
| dart.defineExtensionMembers(_LinkedCustomHashSet, ['contains']);
|
| @@ -26481,19 +26300,13 @@
|
| [_length$1]: core.int,
|
| [_first$]: E
|
| }),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, [])
|
| - }),
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| methods: () => ({
|
| addFirst: dart.definiteFunctionType(dart.void, [E]),
|
| add: dart.definiteFunctionType(dart.void, [E]),
|
| addAll: dart.definiteFunctionType(dart.void, [IterableOfE()]),
|
| remove: dart.definiteFunctionType(core.bool, [E]),
|
| clear: dart.definiteFunctionType(dart.void, []),
|
| - forEach: dart.definiteFunctionType(dart.void, [ETovoid()]),
|
| [_insertBefore$]: dart.definiteFunctionType(dart.void, [E, E], {updateFirst: core.bool}),
|
| [_unlink$]: dart.definiteFunctionType(dart.void, [E])
|
| })
|
| @@ -26785,12 +26598,7 @@
|
| dart.setSignature(_MapBaseValueIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(collection._MapBaseValueIterable$(K, V), [MapOfK$V()])}),
|
| fields: () => ({[_map$0]: MapOfK$V()}),
|
| - getters: () => ({
|
| - first: dart.definiteFunctionType(V, []),
|
| - single: dart.definiteFunctionType(V, []),
|
| - last: dart.definiteFunctionType(V, []),
|
| - iterator: dart.definiteFunctionType(core.Iterator$(V), [])
|
| - })
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(V), [])})
|
| });
|
| dart.defineExtensionMembers(_MapBaseValueIterable, [
|
| 'length',
|
| @@ -27463,12 +27271,7 @@
|
| [_sentinel]: _DoubleLinkedQueueSentinelOfE(),
|
| [_elementCount]: core.int
|
| }),
|
| - getters: () => ({
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, []),
|
| - iterator: dart.definiteFunctionType(collection._DoubleLinkedQueueIterator$(E), [])
|
| - }),
|
| + getters: () => ({iterator: dart.definiteFunctionType(collection._DoubleLinkedQueueIterator$(E), [])}),
|
| methods: () => ({
|
| addLast: dart.definiteFunctionType(dart.void, [E]),
|
| addFirst: dart.definiteFunctionType(dart.void, [E]),
|
| @@ -27840,16 +27643,8 @@
|
| [_tail]: core.int,
|
| [_modificationCount]: core.int
|
| }),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, [])
|
| - }),
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| methods: () => ({
|
| - forEach: dart.definiteFunctionType(dart.void, [ETovoid()]),
|
| - elementAt: dart.definiteFunctionType(E, [core.int]),
|
| - toList: dart.definiteFunctionType(core.List$(E), [], {growable: core.bool}),
|
| add: dart.definiteFunctionType(dart.void, [E]),
|
| addAll: dart.definiteFunctionType(dart.void, [IterableOfE()]),
|
| remove: dart.definiteFunctionType(core.bool, [core.Object]),
|
| @@ -28550,8 +28345,7 @@
|
| dart.setSignature(_SplayTreeKeyIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(collection._SplayTreeKeyIterable$(K), [_SplayTreeOfK$_SplayTreeNodeOfK()])}),
|
| fields: () => ({[_tree]: _SplayTreeOfK$_SplayTreeNodeOfK()}),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(K), [])}),
|
| - methods: () => ({toSet: dart.definiteFunctionType(core.Set$(K), [])})
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(K), [])})
|
| });
|
| dart.defineExtensionMembers(_SplayTreeKeyIterable, ['toSet', 'length', 'isEmpty', 'iterator']);
|
| return _SplayTreeKeyIterable;
|
| @@ -28821,24 +28615,14 @@
|
| [_comparator]: ComparatorOfE(),
|
| [_validKey]: collection._Predicate
|
| }),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, [])
|
| - }),
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| methods: () => ({
|
| [_compare]: dart.definiteFunctionType(core.int, [E, E]),
|
| add: dart.definiteFunctionType(core.bool, [E]),
|
| remove: dart.definiteFunctionType(core.bool, [core.Object]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfE()]),
|
| lookup: dart.definiteFunctionType(E, [core.Object]),
|
| - intersection: dart.definiteFunctionType(core.Set$(E), [SetOfObject()]),
|
| - difference: dart.definiteFunctionType(core.Set$(E), [SetOfObject()]),
|
| - union: dart.definiteFunctionType(core.Set$(E), [SetOfE()]),
|
| [_clone]: dart.definiteFunctionType(collection.SplayTreeSet$(E), []),
|
| - [_copyNode]: dart.definiteFunctionType(collection._SplayTreeNode$(E), [_SplayTreeNodeOfE()]),
|
| - toSet: dart.definiteFunctionType(core.Set$(E), [])
|
| + [_copyNode]: dart.definiteFunctionType(collection._SplayTreeNode$(E), [_SplayTreeNodeOfE()])
|
| })
|
| });
|
| dart.defineExtensionMembers(SplayTreeSet, [
|
| @@ -29152,7 +28936,6 @@
|
| dart.setSignature(convert._JsonMapKeyIterable, {
|
| constructors: () => ({new: dart.definiteFunctionType(convert._JsonMapKeyIterable, [convert._JsonMap])}),
|
| fields: () => ({[_parent]: convert._JsonMap}),
|
| - getters: () => ({iterator: dart.definiteFunctionType(core.Iterator, [])}),
|
| methods: () => ({elementAt: dart.definiteFunctionType(core.String, [core.int])})
|
| });
|
| dart.defineExtensionMembers(convert._JsonMapKeyIterable, ['elementAt', 'contains', 'length', 'iterator']);
|
| @@ -29577,8 +29360,7 @@
|
| fields: () => ({[_subsetMask]: core.int}),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.List$(core.int), [core.String], [core.int, core.int]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfListOfint()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.List$(core.int)), [StreamOfString()])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfListOfint()])
|
| })
|
| });
|
| convert.AsciiEncoder = class AsciiEncoder extends convert._UnicodeSubsetEncoder {
|
| @@ -29668,8 +29450,7 @@
|
| }),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.String, [ListOfint()], [core.int, core.int]),
|
| - [_convertInvalid]: dart.definiteFunctionType(core.String, [ListOfint(), core.int, core.int]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.String), [StreamOfListOfint()])
|
| + [_convertInvalid]: dart.definiteFunctionType(core.String, [ListOfint(), core.int, core.int])
|
| })
|
| });
|
| convert.AsciiDecoder = class AsciiDecoder extends convert._UnicodeSubsetDecoder {
|
| @@ -29692,8 +29473,7 @@
|
| }
|
| };
|
| dart.setSignature(convert.AsciiDecoder, {
|
| - constructors: () => ({new: dart.definiteFunctionType(convert.AsciiDecoder, [], {allowInvalid: core.bool})}),
|
| - methods: () => ({startChunkedConversion: dart.definiteFunctionType(convert.ByteConversionSink, [SinkOfString()])})
|
| + constructors: () => ({new: dart.definiteFunctionType(convert.AsciiDecoder, [], {allowInvalid: core.bool})})
|
| });
|
| const _utf8Sink = Symbol('_utf8Sink');
|
| let const$30;
|
| @@ -30708,8 +30488,7 @@
|
| fields: () => ({[_codec]: CodecOfS$T()}),
|
| getters: () => ({
|
| encoder: dart.definiteFunctionType(convert.Converter$(T, S), []),
|
| - decoder: dart.definiteFunctionType(convert.Converter$(S, T), []),
|
| - inverted: dart.definiteFunctionType(convert.Codec$(S, T), [])
|
| + decoder: dart.definiteFunctionType(convert.Converter$(S, T), [])
|
| })
|
| });
|
| return _InvertedCodec;
|
| @@ -30740,10 +30519,7 @@
|
| [_first$0]: ConverterOfS$M(),
|
| [_second]: ConverterOfM$T()
|
| }),
|
| - methods: () => ({
|
| - convert: dart.definiteFunctionType(T, [S]),
|
| - startChunkedConversion: dart.definiteFunctionType(core.Sink$(S), [SinkOfT()])
|
| - })
|
| + methods: () => ({convert: dart.definiteFunctionType(T, [S])})
|
| });
|
| return _FusedConverter;
|
| });
|
| @@ -31062,9 +30838,7 @@
|
| }),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.String, [core.Object]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.ChunkedConversionSink$(core.Object), [SinkOfString()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.String), [StreamOfObject()]),
|
| - fuse: dart.definiteFunctionType(T => [convert.Converter$(core.Object, T), [convert.Converter$(core.String, T)]])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.ChunkedConversionSink$(core.Object), [SinkOfString()])
|
| })
|
| });
|
| const _indent = Symbol('_indent');
|
| @@ -31138,8 +30912,7 @@
|
| }),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.List$(core.int), [core.Object]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.ChunkedConversionSink$(core.Object), [SinkOfListOfint()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.List$(core.int)), [StreamOfObject()])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.ChunkedConversionSink$(core.Object), [SinkOfListOfint()])
|
| }),
|
| sfields: () => ({DEFAULT_BUFFER_SIZE: core.int}),
|
| statics: () => ({_utf8Encode: dart.definiteFunctionType(core.List$(core.int), [core.String])}),
|
| @@ -31246,8 +31019,7 @@
|
| fields: () => ({[_reviver]: convert._Reviver}),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(dart.dynamic, [core.String]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfObject()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.Object), [StreamOfString()])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfObject()])
|
| })
|
| });
|
| convert._parseJson = function(source, reviver) {
|
| @@ -31844,8 +31616,7 @@
|
| }
|
| };
|
| dart.setSignature(convert.Latin1Decoder, {
|
| - constructors: () => ({new: dart.definiteFunctionType(convert.Latin1Decoder, [], {allowInvalid: core.bool})}),
|
| - methods: () => ({startChunkedConversion: dart.definiteFunctionType(convert.ByteConversionSink, [SinkOfString()])})
|
| + constructors: () => ({new: dart.definiteFunctionType(convert.Latin1Decoder, [], {allowInvalid: core.bool})})
|
| });
|
| const _addSliceToSink = Symbol('_addSliceToSink');
|
| convert._Latin1DecoderSink = class _Latin1DecoderSink extends convert.ByteConversionSinkBase {
|
| @@ -32433,8 +32204,7 @@
|
| constructors: () => ({new: dart.definiteFunctionType(convert.Utf8Encoder, [])}),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.List$(core.int), [core.String], [core.int, core.int]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfListOfint()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.List$(core.int)), [StreamOfString()])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.StringConversionSink, [SinkOfListOfint()])
|
| })
|
| });
|
| convert._Utf8Encoder = class _Utf8Encoder extends core.Object {
|
| @@ -32679,9 +32449,7 @@
|
| fields: () => ({[_allowMalformed]: core.bool}),
|
| methods: () => ({
|
| convert: dart.definiteFunctionType(core.String, [ListOfint()], [core.int, core.int]),
|
| - startChunkedConversion: dart.definiteFunctionType(convert.ByteConversionSink, [SinkOfString()]),
|
| - bind: dart.definiteFunctionType(async.Stream$(core.String), [StreamOfListOfint()]),
|
| - fuse: dart.definiteFunctionType(T => [convert.Converter$(core.List$(core.int), T), [convert.Converter$(core.String, T)]])
|
| + startChunkedConversion: dart.definiteFunctionType(convert.ByteConversionSink, [SinkOfString()])
|
| }),
|
| statics: () => ({_convertIntercepted: dart.definiteFunctionType(core.String, [core.bool, ListOfint(), core.int, core.int])}),
|
| names: ['_convertIntercepted']
|
| @@ -34198,10 +33966,6 @@
|
| [_generator$]: _GeneratorOfE()
|
| }),
|
| getters: () => ({iterator: dart.definiteFunctionType(core.Iterator$(E), [])}),
|
| - methods: () => ({
|
| - skip: dart.definiteFunctionType(core.Iterable$(E), [core.int]),
|
| - take: dart.definiteFunctionType(core.Iterable$(E), [core.int])
|
| - }),
|
| statics: () => ({_id: dart.definiteFunctionType(core.int, [core.int])}),
|
| names: ['_id']
|
| });
|
| @@ -34528,10 +34292,7 @@
|
| dart.setSignature(core.Runes, {
|
| constructors: () => ({new: dart.definiteFunctionType(core.Runes, [core.String])}),
|
| fields: () => ({string: core.String}),
|
| - getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.RuneIterator, []),
|
| - last: dart.definiteFunctionType(core.int, [])
|
| - })
|
| + getters: () => ({iterator: dart.definiteFunctionType(core.RuneIterator, [])})
|
| });
|
| dart.defineExtensionMembers(core.Runes, ['iterator', 'last']);
|
| core._isLeadSurrogate = function(code) {
|
| @@ -43344,8 +43105,7 @@
|
| contentLength: dart.definiteFunctionType(dart.void, [core.int]),
|
| persistentConnection: dart.definiteFunctionType(dart.void, [core.bool]),
|
| bufferOutput: dart.definiteFunctionType(dart.void, [core.bool])
|
| - }),
|
| - methods: () => ({add: dart.definiteFunctionType(dart.void, [ListOfint()])})
|
| + })
|
| });
|
| return _HttpOutboundMessage;
|
| });
|
| @@ -50683,10 +50443,6 @@
|
| name: dart.definiteFunctionType(core.String, []),
|
| encoder: dart.definiteFunctionType(convert.Converter$(core.String, core.List$(core.int)), []),
|
| decoder: dart.definiteFunctionType(convert.Converter$(core.List$(core.int), core.String), [])
|
| - }),
|
| - methods: () => ({
|
| - encode: dart.definiteFunctionType(core.List$(core.int), [core.String]),
|
| - decode: dart.definiteFunctionType(core.String, [ListOfint()])
|
| })
|
| });
|
| io.SYSTEM_ENCODING = dart.const(new io.SystemEncoding());
|
| @@ -52882,14 +52638,7 @@
|
| [_checkIndex]: dart.definiteFunctionType(dart.dynamic, [core.int]),
|
| [_checkInsertIndex]: dart.definiteFunctionType(dart.dynamic, [core.int]),
|
| _get: dart.definiteFunctionType(E, [core.Object]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.Object, E]),
|
| - add: dart.definiteFunctionType(dart.void, [E]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfE()]),
|
| - insert: dart.definiteFunctionType(dart.void, [core.int, E]),
|
| - removeAt: dart.definiteFunctionType(E, [core.int]),
|
| - removeLast: dart.definiteFunctionType(E, []),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfE()], [core.int]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [EAndEToint()])
|
| + _set: dart.definiteFunctionType(dart.void, [core.Object, E])
|
| }),
|
| statics: () => ({_checkRange: dart.definiteFunctionType(dart.dynamic, [core.int, core.int, core.int])}),
|
| names: ['_checkRange']
|
| @@ -72212,17 +71961,11 @@
|
| html$.DomStringList[dart.implements] = () => [ListOfString()];
|
| dart.setSignature(html$.DomStringList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.DomStringList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(core.String, []),
|
| - [dartx.last]: dart.definiteFunctionType(core.String, []),
|
| - [dartx.single]: dart.definiteFunctionType(core.String, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(core.String, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, core.String]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(core.String, [core.int]),
|
| [__getter__]: dart.definiteFunctionType(core.String, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(core.String, [core.int])
|
| })
|
| @@ -72391,10 +72134,6 @@
|
| }),
|
| getters: () => ({
|
| length: dart.definiteFunctionType(core.int, []),
|
| - iterator: dart.definiteFunctionType(core.Iterator$(html$.Element), []),
|
| - first: dart.definiteFunctionType(html$.Element, []),
|
| - last: dart.definiteFunctionType(html$.Element, []),
|
| - single: dart.definiteFunctionType(html$.Element, []),
|
| rawList: dart.definiteFunctionType(core.List$(html$.Node), [])
|
| }),
|
| setters: () => ({length: dart.definiteFunctionType(dart.void, [core.int])}),
|
| @@ -72402,18 +72141,7 @@
|
| _get: dart.definiteFunctionType(html$.Element, [core.int]),
|
| _set: dart.definiteFunctionType(dart.void, [core.int, html$.Element]),
|
| add: dart.definiteFunctionType(html$.Element, [html$.Element]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfElement()]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [ElementAndElementToint()]),
|
| - removeWhere: dart.definiteFunctionType(dart.void, [ElementTobool()]),
|
| - retainWhere: dart.definiteFunctionType(dart.void, [ElementTobool()]),
|
| - [_filter$0]: dart.definiteFunctionType(dart.void, [ElementTobool(), core.bool]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfElement()], [core.int]),
|
| - replaceRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfElement()]),
|
| - fillRange: dart.definiteFunctionType(dart.void, [core.int, core.int], [html$.Element]),
|
| - insert: dart.definiteFunctionType(dart.void, [core.int, html$.Element]),
|
| - setAll: dart.definiteFunctionType(dart.void, [core.int, IterableOfElement()]),
|
| - removeAt: dart.definiteFunctionType(html$.Element, [core.int]),
|
| - removeLast: dart.definiteFunctionType(html$.Element, [])
|
| + [_filter$0]: dart.definiteFunctionType(dart.void, [ElementTobool(), core.bool])
|
| })
|
| });
|
| dart.defineExtensionMembers(html$._ChildrenElementList, [
|
| @@ -72728,9 +72456,6 @@
|
| fields: () => ({[_nodeList]: ListOfNode()}),
|
| getters: () => ({
|
| length: dart.definiteFunctionType(core.int, []),
|
| - first: dart.definiteFunctionType(E, []),
|
| - last: dart.definiteFunctionType(E, []),
|
| - single: dart.definiteFunctionType(E, []),
|
| classes: dart.definiteFunctionType(html$.CssClassSet, []),
|
| style: dart.definiteFunctionType(html$.CssStyleDeclarationBase, []),
|
| contentEdge: dart.definiteFunctionType(html$.CssRect, []),
|
| @@ -72814,8 +72539,7 @@
|
| }),
|
| methods: () => ({
|
| _get: dart.definiteFunctionType(E, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, E]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [ComparatorOfE()])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, E])
|
| })
|
| });
|
| dart.defineExtensionMembers(_FrozenElementList, [
|
| @@ -73583,17 +73307,11 @@
|
| html$.FileList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfFile()];
|
| dart.setSignature(html$.FileList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.FileList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.File, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.File, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.File, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.File, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.File]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.File, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.File, [core.int])
|
| })
|
| });
|
| @@ -75661,17 +75379,11 @@
|
| html$.HtmlCollection[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| dart.setSignature(html$.HtmlCollection, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.HtmlCollection, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Node, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Node]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx.namedItem]: dart.definiteFunctionType(core.Object, [core.String])
|
| })
|
| @@ -80855,17 +80567,11 @@
|
| html$.MimeTypeArray[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfMimeType()];
|
| dart.setSignature(html$.MimeTypeArray, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.MimeTypeArray, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.MimeType, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.MimeType, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.MimeType, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.MimeType, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.MimeType]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.MimeType, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.MimeType, [core.int]),
|
| [dartx.namedItem]: dart.definiteFunctionType(html$.MimeType, [core.String])
|
| })
|
| @@ -81898,29 +81604,13 @@
|
| constructors: () => ({new: dart.definiteFunctionType(html$._ChildNodeListLazy, [html$.Node])}),
|
| fields: () => ({[_this]: html$.Node}),
|
| getters: () => ({
|
| - first: dart.definiteFunctionType(html$.Node, []),
|
| - last: dart.definiteFunctionType(html$.Node, []),
|
| - single: dart.definiteFunctionType(html$.Node, []),
|
| - iterator: dart.definiteFunctionType(core.Iterator$(html$.Node), []),
|
| length: dart.definiteFunctionType(core.int, []),
|
| rawList: dart.definiteFunctionType(core.List$(html$.Node), [])
|
| }),
|
| setters: () => ({length: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| - add: dart.definiteFunctionType(dart.void, [html$.Node]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfNode()]),
|
| - insert: dart.definiteFunctionType(dart.void, [core.int, html$.Node]),
|
| - insertAll: dart.definiteFunctionType(dart.void, [core.int, IterableOfNode()]),
|
| - setAll: dart.definiteFunctionType(dart.void, [core.int, IterableOfNode()]),
|
| - removeLast: dart.definiteFunctionType(html$.Node, []),
|
| - removeAt: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [_filter$0]: dart.definiteFunctionType(dart.void, [NodeTobool(), core.bool]),
|
| - removeWhere: dart.definiteFunctionType(dart.void, [NodeTobool()]),
|
| - retainWhere: dart.definiteFunctionType(dart.void, [NodeTobool()]),
|
| _set: dart.definiteFunctionType(dart.void, [core.int, html$.Node]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [ComparatorOfNode()]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfNode()], [core.int]),
|
| - fillRange: dart.definiteFunctionType(dart.void, [core.int, core.int], [html$.Node]),
|
| _get: dart.definiteFunctionType(html$.Node, [core.int])
|
| })
|
| });
|
| @@ -82097,17 +81787,11 @@
|
| html$.NodeList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| dart.setSignature(html$.NodeList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.NodeList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Node, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Node]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [_item]: dart.definiteFunctionType(html$.Node, [core.int])
|
| })
|
| });
|
| @@ -83788,17 +83472,11 @@
|
| html$.PluginArray[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfPlugin()];
|
| dart.setSignature(html$.PluginArray, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.PluginArray, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Plugin, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Plugin, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Plugin, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Plugin, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Plugin]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Plugin, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.Plugin, [core.int]),
|
| [dartx.namedItem]: dart.definiteFunctionType(html$.Plugin, [core.String]),
|
| [dartx.refresh]: dart.definiteFunctionType(dart.void, [core.bool])
|
| @@ -87270,17 +86948,11 @@
|
| html$.SourceBufferList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfSourceBuffer()];
|
| dart.setSignature(html$.SourceBufferList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.SourceBufferList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.SourceBuffer, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.SourceBuffer, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.SourceBuffer, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.SourceBuffer, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.SourceBuffer]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.SourceBuffer, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.SourceBuffer, [core.int])
|
| })
|
| });
|
| @@ -87524,17 +87196,11 @@
|
| _: dart.definiteFunctionType(html$.SpeechGrammarList, []),
|
| new: dart.definiteFunctionType(html$.SpeechGrammarList, [])
|
| }),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.SpeechGrammar, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.SpeechGrammar, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.SpeechGrammar, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.SpeechGrammar, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.SpeechGrammar]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.SpeechGrammar, [core.int]),
|
| [dartx.addFromString]: dart.definiteFunctionType(dart.void, [core.String], [core.num]),
|
| [dartx.addFromUri]: dart.definiteFunctionType(dart.void, [core.String], [core.num]),
|
| [dartx.item]: dart.definiteFunctionType(html$.SpeechGrammar, [core.int])
|
| @@ -89732,17 +89398,11 @@
|
| html$.TextTrackCueList[dart.implements] = () => [ListOfTextTrackCue(), _js_helper.JavaScriptIndexingBehavior];
|
| dart.setSignature(html$.TextTrackCueList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$.TextTrackCueList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.TextTrackCue, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.TextTrackCue, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.TextTrackCue, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.TextTrackCue, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.TextTrackCue]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.TextTrackCue, [core.int]),
|
| [dartx.getCueById]: dart.definiteFunctionType(html$.TextTrackCue, [core.String]),
|
| [dartx.item]: dart.definiteFunctionType(html$.TextTrackCue, [core.int])
|
| })
|
| @@ -89822,9 +89482,6 @@
|
| constructors: () => ({_: dart.definiteFunctionType(html$.TextTrackList, [])}),
|
| getters: () => ({
|
| [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.TextTrack, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.TextTrack, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.TextTrack, []),
|
| [dartx.onAddTrack]: dart.definiteFunctionType(async.Stream$(html$.TrackEvent), []),
|
| [dartx.onChange]: dart.definiteFunctionType(async.Stream$(html$.Event), [])
|
| }),
|
| @@ -89832,7 +89489,6 @@
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.TextTrack, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.TextTrack]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.TextTrack, [core.int]),
|
| [dartx.getTrackById]: dart.definiteFunctionType(html$.TextTrack, [core.String]),
|
| [dartx.item]: dart.definiteFunctionType(html$.TextTrack, [core.int])
|
| }),
|
| @@ -90183,17 +89839,11 @@
|
| new: dart.definiteFunctionType(html$.TouchList, []),
|
| _: dart.definiteFunctionType(html$.TouchList, [])
|
| }),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Touch, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Touch, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Touch, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Touch, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Touch]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Touch, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.Touch, [core.int])
|
| }),
|
| sgetters: () => ({supported: dart.definiteFunctionType(core.bool, [])})
|
| @@ -94067,17 +93717,11 @@
|
| html$._ClientRectList[dart.implements] = () => [ListOfRectangleOfnum()];
|
| dart.setSignature(html$._ClientRectList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._ClientRectList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(math.Rectangle$(core.num), []),
|
| - [dartx.last]: dart.definiteFunctionType(math.Rectangle$(core.num), []),
|
| - [dartx.single]: dart.definiteFunctionType(math.Rectangle$(core.num), [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(math.Rectangle$(core.num), [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, RectangleOfnum()]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(math.Rectangle$(core.num), [core.int]),
|
| [__getter__]: dart.definiteFunctionType(math.Rectangle$(core.num), [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(math.Rectangle$(core.num), [core.int])
|
| })
|
| @@ -94144,17 +93788,11 @@
|
| html$._CssRuleList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfCssRule()];
|
| dart.setSignature(html$._CssRuleList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._CssRuleList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.CssRule, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.CssRule, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.CssRule, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.CssRule, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.CssRule]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.CssRule, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.CssRule, [core.int])
|
| })
|
| });
|
| @@ -94397,17 +94035,11 @@
|
| html$._GamepadList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfGamepad()];
|
| dart.setSignature(html$._GamepadList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._GamepadList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Gamepad, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Gamepad, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Gamepad, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Gamepad, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Gamepad]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Gamepad, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.Gamepad, [core.int])
|
| })
|
| });
|
| @@ -94606,17 +94238,11 @@
|
| html$._NamedNodeMap[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| dart.setSignature(html$._NamedNodeMap, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._NamedNodeMap, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.Node, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.Node, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.Node]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.Node, [core.int]),
|
| [dartx.getNamedItem]: dart.definiteFunctionType(html$._Attr, [core.String]),
|
| [dartx.getNamedItemNS]: dart.definiteFunctionType(html$._Attr, [core.String, core.String]),
|
| [dartx.item]: dart.definiteFunctionType(html$._Attr, [core.int]),
|
| @@ -94816,17 +94442,11 @@
|
| html$._SpeechRecognitionResultList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfSpeechRecognitionResult()];
|
| dart.setSignature(html$._SpeechRecognitionResultList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._SpeechRecognitionResultList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.SpeechRecognitionResult, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.SpeechRecognitionResult, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.SpeechRecognitionResult, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.SpeechRecognitionResult, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.SpeechRecognitionResult]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.SpeechRecognitionResult, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(html$.SpeechRecognitionResult, [core.int])
|
| })
|
| });
|
| @@ -94894,17 +94514,11 @@
|
| html$._StyleSheetList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfStyleSheet()];
|
| dart.setSignature(html$._StyleSheetList, {
|
| constructors: () => ({_: dart.definiteFunctionType(html$._StyleSheetList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(html$.StyleSheet, []),
|
| - [dartx.last]: dart.definiteFunctionType(html$.StyleSheet, []),
|
| - [dartx.single]: dart.definiteFunctionType(html$.StyleSheet, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(html$.StyleSheet, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, html$.StyleSheet]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(html$.StyleSheet, [core.int]),
|
| [__getter__]: dart.definiteFunctionType(html$.CssStyleSheet, [core.String]),
|
| [dartx.item]: dart.definiteFunctionType(html$.StyleSheet, [core.int])
|
| })
|
| @@ -96286,10 +95900,7 @@
|
| [_eventType]: core.String,
|
| [_useCapture]: core.bool
|
| }),
|
| - methods: () => ({
|
| - asBroadcastStream: dart.definiteFunctionType(async.Stream$(T), [], {onListen: StreamSubscriptionOfTTovoid(), onCancel: StreamSubscriptionOfTTovoid()}),
|
| - listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool})
|
| - })
|
| + methods: () => ({listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool})})
|
| });
|
| return _EventStream;
|
| });
|
| @@ -96390,8 +96001,7 @@
|
| methods: () => ({
|
| matches: dart.definiteFunctionType(async.Stream$(T), [core.String]),
|
| listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool}),
|
| - capture: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()]),
|
| - asBroadcastStream: dart.definiteFunctionType(async.Stream$(T), [], {onListen: StreamSubscriptionOfTTovoid(), onCancel: StreamSubscriptionOfTTovoid()})
|
| + capture: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()])
|
| })
|
| });
|
| return _ElementListEventStreamImpl;
|
| @@ -96553,7 +96163,6 @@
|
| }),
|
| methods: () => ({
|
| listen: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid()], {onError: core.Function, onDone: VoidTovoid(), cancelOnError: core.bool}),
|
| - asBroadcastStream: dart.definiteFunctionType(async.Stream$(T), [], {onListen: StreamSubscriptionOfTTovoid(), onCancel: StreamSubscriptionOfTTovoid()}),
|
| add: dart.definiteFunctionType(dart.void, [T])
|
| })
|
| });
|
| @@ -96831,8 +96440,7 @@
|
| dart.addSimpleTypeTests(html$._CustomKeyEventStreamImpl);
|
| html$._CustomKeyEventStreamImpl[dart.implements] = () => [CustomStreamOfKeyEvent()];
|
| dart.setSignature(html$._CustomKeyEventStreamImpl, {
|
| - constructors: () => ({new: dart.definiteFunctionType(html$._CustomKeyEventStreamImpl, [core.String])}),
|
| - methods: () => ({add: dart.definiteFunctionType(dart.void, [html$.KeyEvent])})
|
| + constructors: () => ({new: dart.definiteFunctionType(html$._CustomKeyEventStreamImpl, [core.String])})
|
| });
|
| const _subscriptions = Symbol('_subscriptions');
|
| const _controller$1 = Symbol('_controller');
|
| @@ -98421,21 +98029,13 @@
|
| constructors: () => ({new: dart.definiteFunctionType(html$._WrappedList$(E), [ListOfNode()])}),
|
| fields: () => ({[_list$]: ListOfNode()}),
|
| getters: () => ({
|
| - iterator: dart.definiteFunctionType(core.Iterator$(E), []),
|
| length: dart.definiteFunctionType(core.int, []),
|
| rawList: dart.definiteFunctionType(core.List$(html$.Node), [])
|
| }),
|
| setters: () => ({length: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| - add: dart.definiteFunctionType(dart.void, [E]),
|
| _get: dart.definiteFunctionType(E, [core.int]),
|
| - _set: dart.definiteFunctionType(dart.void, [core.int, E]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [EAndEToint()]),
|
| - insert: dart.definiteFunctionType(dart.void, [core.int, E]),
|
| - removeAt: dart.definiteFunctionType(E, [core.int]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfE()], [core.int]),
|
| - replaceRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfE()]),
|
| - fillRange: dart.definiteFunctionType(dart.void, [core.int, core.int], [E])
|
| + _set: dart.definiteFunctionType(dart.void, [core.int, E])
|
| })
|
| });
|
| dart.defineExtensionMembers(_WrappedList, [
|
| @@ -99788,25 +99388,12 @@
|
| getters: () => ({
|
| [_iterable$0]: dart.definiteFunctionType(core.Iterable$(html$.Element), []),
|
| [_filtered]: dart.definiteFunctionType(core.List$(html$.Element), []),
|
| - reversed: dart.definiteFunctionType(core.Iterable$(html$.Element), []),
|
| length: dart.definiteFunctionType(core.int, []),
|
| - iterator: dart.definiteFunctionType(core.Iterator$(html$.Element), []),
|
| rawList: dart.definiteFunctionType(core.List$(html$.Node), [])
|
| }),
|
| setters: () => ({length: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| - forEach: dart.definiteFunctionType(dart.void, [ElementTovoid()]),
|
| _set: dart.definiteFunctionType(dart.void, [core.int, html$.Element]),
|
| - add: dart.definiteFunctionType(dart.void, [html$.Element]),
|
| - addAll: dart.definiteFunctionType(dart.void, [IterableOfElement()]),
|
| - sort: dart.definiteFunctionType(dart.void, [], [ElementAndElementToint()]),
|
| - setRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfElement()], [core.int]),
|
| - fillRange: dart.definiteFunctionType(dart.void, [core.int, core.int], [html$.Element]),
|
| - replaceRange: dart.definiteFunctionType(dart.void, [core.int, core.int, IterableOfElement()]),
|
| - removeLast: dart.definiteFunctionType(html$.Element, []),
|
| - insert: dart.definiteFunctionType(dart.void, [core.int, html$.Element]),
|
| - insertAll: dart.definiteFunctionType(dart.void, [core.int, IterableOfElement()]),
|
| - removeAt: dart.definiteFunctionType(html$.Element, [core.int]),
|
| _get: dart.definiteFunctionType(html$.Element, [core.int])
|
| })
|
| });
|
| @@ -103477,17 +103064,11 @@
|
| dart.setSignature(svg$.LengthList, {
|
| constructors: () => ({_: dart.definiteFunctionType(svg$.LengthList, [])}),
|
| fields: () => ({[dartx.numberOfItems]: core.int}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(svg$.Length, []),
|
| - [dartx.last]: dart.definiteFunctionType(svg$.Length, []),
|
| - [dartx.single]: dart.definiteFunctionType(svg$.Length, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(svg$.Length, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, svg$.Length]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(svg$.Length, [core.int]),
|
| [__setter__$]: dart.definiteFunctionType(dart.void, [core.int, svg$.Length]),
|
| [dartx.appendItem]: dart.definiteFunctionType(svg$.Length, [svg$.Length]),
|
| [dartx.getItem]: dart.definiteFunctionType(svg$.Length, [core.int]),
|
| @@ -104083,17 +103664,11 @@
|
| dart.setSignature(svg$.NumberList, {
|
| constructors: () => ({_: dart.definiteFunctionType(svg$.NumberList, [])}),
|
| fields: () => ({[dartx.numberOfItems]: core.int}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(svg$.Number, []),
|
| - [dartx.last]: dart.definiteFunctionType(svg$.Number, []),
|
| - [dartx.single]: dart.definiteFunctionType(svg$.Number, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(svg$.Number, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, svg$.Number]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(svg$.Number, [core.int]),
|
| [__setter__$]: dart.definiteFunctionType(dart.void, [core.int, svg$.Number]),
|
| [dartx.appendItem]: dart.definiteFunctionType(svg$.Number, [svg$.Number]),
|
| [dartx.getItem]: dart.definiteFunctionType(svg$.Number, [core.int]),
|
| @@ -105068,17 +104643,11 @@
|
| dart.setSignature(svg$.PathSegList, {
|
| constructors: () => ({_: dart.definiteFunctionType(svg$.PathSegList, [])}),
|
| fields: () => ({[dartx.numberOfItems]: core.int}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(svg$.PathSeg, []),
|
| - [dartx.last]: dart.definiteFunctionType(svg$.PathSeg, []),
|
| - [dartx.single]: dart.definiteFunctionType(svg$.PathSeg, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(svg$.PathSeg, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, svg$.PathSeg]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(svg$.PathSeg, [core.int]),
|
| [__setter__$]: dart.definiteFunctionType(dart.void, [core.int, svg$.PathSeg]),
|
| [dartx.appendItem]: dart.definiteFunctionType(svg$.PathSeg, [svg$.PathSeg]),
|
| [dartx.getItem]: dart.definiteFunctionType(svg$.PathSeg, [core.int]),
|
| @@ -105833,17 +105402,11 @@
|
| dart.setSignature(svg$.StringList, {
|
| constructors: () => ({_: dart.definiteFunctionType(svg$.StringList, [])}),
|
| fields: () => ({[dartx.numberOfItems]: core.int}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(core.String, []),
|
| - [dartx.last]: dart.definiteFunctionType(core.String, []),
|
| - [dartx.single]: dart.definiteFunctionType(core.String, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(core.String, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, core.String]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(core.String, [core.int]),
|
| [__setter__$]: dart.definiteFunctionType(dart.void, [core.int, core.String]),
|
| [dartx.appendItem]: dart.definiteFunctionType(core.String, [core.String]),
|
| [dartx.getItem]: dart.definiteFunctionType(core.String, [core.int]),
|
| @@ -106717,17 +106280,11 @@
|
| dart.setSignature(svg$.TransformList, {
|
| constructors: () => ({_: dart.definiteFunctionType(svg$.TransformList, [])}),
|
| fields: () => ({[dartx.numberOfItems]: core.int}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(svg$.Transform, []),
|
| - [dartx.last]: dart.definiteFunctionType(svg$.Transform, []),
|
| - [dartx.single]: dart.definiteFunctionType(svg$.Transform, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(svg$.Transform, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, svg$.Transform]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(svg$.Transform, [core.int]),
|
| [__setter__$]: dart.definiteFunctionType(dart.void, [core.int, svg$.Transform]),
|
| [dartx.appendItem]: dart.definiteFunctionType(svg$.Transform, [svg$.Transform]),
|
| [dartx.consolidate]: dart.definiteFunctionType(svg$.Transform, []),
|
| @@ -110764,17 +110321,11 @@
|
| web_sql.SqlResultSetRowList[dart.implements] = () => [ListOfMap()];
|
| dart.setSignature(web_sql.SqlResultSetRowList, {
|
| constructors: () => ({_: dart.definiteFunctionType(web_sql.SqlResultSetRowList, [])}),
|
| - getters: () => ({
|
| - [dartx.length]: dart.definiteFunctionType(core.int, []),
|
| - [dartx.first]: dart.definiteFunctionType(core.Map, []),
|
| - [dartx.last]: dart.definiteFunctionType(core.Map, []),
|
| - [dartx.single]: dart.definiteFunctionType(core.Map, [])
|
| - }),
|
| + getters: () => ({[dartx.length]: dart.definiteFunctionType(core.int, [])}),
|
| setters: () => ({[dartx.length]: dart.definiteFunctionType(dart.void, [core.int])}),
|
| methods: () => ({
|
| [dartx._get]: dart.definiteFunctionType(core.Map, [core.int]),
|
| [dartx._set]: dart.definiteFunctionType(dart.void, [core.int, core.Map]),
|
| - [dartx.elementAt]: dart.definiteFunctionType(core.Map, [core.int]),
|
| [dartx.item]: dart.definiteFunctionType(core.Map, [core.int]),
|
| [_item_1]: dart.definiteFunctionType(dart.dynamic, [dart.dynamic])
|
| })
|
|
|