| Index: pkg/dev_compiler/lib/js/legacy/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/legacy/dart_sdk.js b/pkg/dev_compiler/lib/js/legacy/dart_sdk.js
|
| index 029beee516efc323f3e97f020a2f380247bb2e90..367818703f4ba19f4c4039be658466e9a8ce15de 100644
|
| --- a/pkg/dev_compiler/lib/js/legacy/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/legacy/dart_sdk.js
|
| @@ -7212,30 +7212,8 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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',
|
| @@ -7361,12 +7339,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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, [
|
| @@ -7481,13 +7453,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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',
|
| @@ -7580,8 +7546,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| fields: () => ({
|
| [_source]: IterableOfS(),
|
| [_f]: _TransformationOfS$T()
|
| - }),
|
| - methods: () => ({elementAt: dart.definiteFunctionType(T, [core.int])})
|
| + })
|
| });
|
| dart.defineExtensionMembers(MappedListIterable, ['elementAt', 'length']);
|
| return MappedListIterable;
|
| @@ -7930,8 +7895,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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;
|
| @@ -8157,31 +8121,8 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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',
|
| @@ -8380,8 +8321,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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');
|
| @@ -8510,8 +8450,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| @@ -12678,12 +12617,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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();
|
| @@ -12748,8 +12681,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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',
|
| @@ -13197,10 +13129,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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 {
|
| @@ -15145,8 +15074,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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, [
|
| @@ -15778,8 +15706,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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, [
|
| @@ -15895,8 +15822,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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, [
|
| @@ -16261,8 +16187,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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']);
|
| @@ -16295,10 +16220,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| _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([
|
| @@ -16342,7 +16264,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16392,7 +16313,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16447,10 +16367,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16505,10 +16422,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16563,10 +16477,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16621,10 +16532,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16679,10 +16587,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16744,10 +16649,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -16810,10 +16712,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -17627,10 +17526,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| });
|
| @@ -18622,10 +18518,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| });
|
| @@ -19960,10 +19853,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| });
|
| @@ -20668,8 +20558,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| fields: () => ({
|
| [_pending]: _EventGeneratorOfT(),
|
| [_isUsed]: core.bool
|
| - }),
|
| - methods: () => ({[_createSubscription]: dart.definiteFunctionType(async.StreamSubscription$(T), [TTovoid(), core.Function, VoidTovoid(), core.bool])})
|
| + })
|
| });
|
| return _GeneratedStreamImpl;
|
| });
|
| @@ -21548,7 +21437,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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, [])
|
| @@ -21600,8 +21488,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21638,8 +21525,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21671,8 +21557,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21761,11 +21646,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21839,8 +21720,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21873,11 +21753,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21923,11 +21799,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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;
|
| });
|
| @@ -21981,7 +21853,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_equals]: _EqualityOfT(),
|
| [_previous$]: core.Object
|
| }),
|
| - methods: () => ({[_handleData]: dart.definiteFunctionType(dart.void, [T, _EventSinkOfT()])}),
|
| sfields: () => ({_SENTINEL: core.Object})
|
| });
|
| return _DistinctStream;
|
| @@ -22122,7 +21993,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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, [])
|
| @@ -22290,7 +22160,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| 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]),
|
| @@ -23871,11 +23740,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']);
|
| @@ -23918,8 +23782,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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',
|
| @@ -24116,19 +23979,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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',
|
| @@ -24198,8 +24049,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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',
|
| @@ -24318,11 +24168,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']);
|
| @@ -24694,11 +24539,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| }
|
| 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;
|
| @@ -24948,7 +24789,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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), []),
|
| @@ -24999,9 +24839,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| return -1;
|
| }
|
| }
|
| - dart.setSignature(_IdentityHashSet, {
|
| - methods: () => ({[_newSet]: dart.definiteFunctionType(core.Set$(E), [])})
|
| - });
|
| return _IdentityHashSet;
|
| });
|
| collection._IdentityHashSet = _IdentityHashSet();
|
| @@ -25055,11 +24892,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']);
|
| @@ -25391,9 +25223,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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), []),
|
| @@ -25402,13 +25232,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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]),
|
| @@ -25464,9 +25291,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| return -1;
|
| }
|
| }
|
| - dart.setSignature(_LinkedIdentityHashSet, {
|
| - methods: () => ({[_newSet]: dart.definiteFunctionType(core.Set$(E), [])})
|
| - });
|
| return _LinkedIdentityHashSet;
|
| });
|
| collection._LinkedIdentityHashSet = _LinkedIdentityHashSet();
|
| @@ -25532,11 +25356,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']);
|
| @@ -26482,19 +26301,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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])
|
| })
|
| @@ -26786,12 +26599,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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',
|
| @@ -27464,12 +27272,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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]),
|
| @@ -27841,16 +27644,8 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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]),
|
| @@ -28551,8 +28346,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| @@ -28822,24 +28616,14 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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, [
|
| @@ -29153,7 +28937,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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']);
|
| @@ -29578,8 +29361,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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 {
|
| @@ -29669,8 +29451,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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 {
|
| @@ -29693,8 +29474,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| };
|
| 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;
|
| @@ -30709,8 +30489,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| @@ -30741,10 +30520,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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;
|
| });
|
| @@ -31063,9 +30839,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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');
|
| @@ -31139,8 +30913,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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])}),
|
| @@ -31247,8 +31020,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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) {
|
| @@ -31845,8 +31617,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }
|
| };
|
| 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 {
|
| @@ -32434,8 +32205,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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 {
|
| @@ -32680,9 +32450,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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']
|
| @@ -34199,10 +33967,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']
|
| });
|
| @@ -34529,10 +34293,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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) {
|
| @@ -43345,8 +43106,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| });
|
| @@ -50684,10 +50444,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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());
|
| @@ -52883,14 +52639,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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']
|
| @@ -72213,17 +71962,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -72392,10 +72135,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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])}),
|
| @@ -72403,18 +72142,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| _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, [
|
| @@ -72729,9 +72457,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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, []),
|
| @@ -72815,8 +72540,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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, [
|
| @@ -73584,17 +73308,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -75662,17 +75380,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -80856,17 +80568,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -81899,29 +81605,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -82098,17 +81788,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -83789,17 +83473,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| @@ -87271,17 +86949,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -87525,17 +87197,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| _: 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])
|
| @@ -89733,17 +89399,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -89823,9 +89483,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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), [])
|
| }),
|
| @@ -89833,7 +89490,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| }),
|
| @@ -90184,17 +89840,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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, [])})
|
| @@ -94068,17 +93718,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -94145,17 +93789,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -94398,17 +94036,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -94607,17 +94239,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -94817,17 +94443,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -94895,17 +94515,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| @@ -96287,10 +95901,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| [_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;
|
| });
|
| @@ -96391,8 +96002,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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;
|
| @@ -96554,7 +96164,6 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| }),
|
| 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])
|
| })
|
| });
|
| @@ -96832,8 +96441,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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');
|
| @@ -98422,21 +98030,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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, [
|
| @@ -99789,25 +99389,12 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
| });
|
| @@ -103478,17 +103065,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -104084,17 +103665,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -105069,17 +104644,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -105834,17 +105403,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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]),
|
| @@ -106718,17 +106281,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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, []),
|
| @@ -110765,17 +110322,11 @@ dart_library.library('dart_sdk', null, /* Imports */[
|
| 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])
|
| })
|
|
|