diff --git a/dwds/CHANGELOG.md b/dwds/CHANGELOG.md index 36010f113..50416c41f 100644 --- a/dwds/CHANGELOG.md +++ b/dwds/CHANGELOG.md @@ -1,8 +1,12 @@ -## 24.4.2-wip +## 25.0.0-wip - Implemented hot restart over websockets with multi window support. - Fix refresh race condition bug by adding an isolate destruction grace period. - Update a call to the `package:shelf_web_socket` `webSocketHandler()` function. +- Remove deprecated parameter `injectDebuggingSupportCode` from `Dwds.start()`. +- Remove all deprecated fields, getters, and parameters + related to the null safety compilation mode. Dart 3 only + supports [sound null safety](https://dart.dev/null-safety). ## 24.4.1 diff --git a/dwds/lib/dart_web_debug_service.dart b/dwds/lib/dart_web_debug_service.dart index 587e8af43..693bcd8ce 100644 --- a/dwds/lib/dart_web_debug_service.dart +++ b/dwds/lib/dart_web_debug_service.dart @@ -74,11 +74,6 @@ class Dwds { required Stream buildResults, required ConnectionProvider chromeConnection, required ToolConfiguration toolConfiguration, - // ignore: avoid-unused-parameters - @Deprecated( - 'This parameter is ignored and will be removed in a future version.', - ) - bool injectDebuggingSupportCode = true, bool useDwdsWebSocketConnection = false, }) async { globalToolConfiguration = toolConfiguration; diff --git a/dwds/lib/data/build_result.g.dart b/dwds/lib/data/build_result.g.dart index 1b7087249..c81c083bc 100644 --- a/dwds/lib/data/build_result.g.dart +++ b/dwds/lib/data/build_result.g.dart @@ -19,16 +19,16 @@ BuildStatus _$valueOf(String name) { case 'failed': return _$failed; default: - throw new ArgumentError(name); + throw ArgumentError(name); } } -final BuiltSet _$values = new BuiltSet( +final BuiltSet _$values = BuiltSet( const [_$started, _$succeeded, _$failed], ); -Serializer _$buildStatusSerializer = new _$BuildStatusSerializer(); -Serializer _$buildResultSerializer = new _$BuildResultSerializer(); +Serializer _$buildStatusSerializer = _$BuildStatusSerializer(); +Serializer _$buildResultSerializer = _$BuildResultSerializer(); class _$BuildStatusSerializer implements PrimitiveSerializer { @override @@ -80,7 +80,7 @@ class _$BuildResultSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new BuildResultBuilder(); + final result = BuildResultBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -108,18 +108,15 @@ class _$BuildResult extends BuildResult { final BuildStatus status; factory _$BuildResult([void Function(BuildResultBuilder)? updates]) => - (new BuildResultBuilder()..update(updates))._build(); - - _$BuildResult._({required this.status}) : super._() { - BuiltValueNullFieldError.checkNotNull(status, r'BuildResult', 'status'); - } + (BuildResultBuilder()..update(updates))._build(); + _$BuildResult._({required this.status}) : super._(); @override BuildResult rebuild(void Function(BuildResultBuilder) updates) => (toBuilder()..update(updates)).build(); @override - BuildResultBuilder toBuilder() => new BuildResultBuilder()..replace(this); + BuildResultBuilder toBuilder() => BuildResultBuilder()..replace(this); @override bool operator ==(Object other) { @@ -162,7 +159,6 @@ class BuildResultBuilder implements Builder { @override void replace(BuildResult other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$BuildResult; } @@ -177,7 +173,7 @@ class BuildResultBuilder implements Builder { _$BuildResult _build() { final _$result = _$v ?? - new _$BuildResult._( + _$BuildResult._( status: BuiltValueNullFieldError.checkNotNull( status, r'BuildResult', diff --git a/dwds/lib/data/connect_request.g.dart b/dwds/lib/data/connect_request.g.dart index d4b06d811..20c851585 100644 --- a/dwds/lib/data/connect_request.g.dart +++ b/dwds/lib/data/connect_request.g.dart @@ -7,7 +7,7 @@ part of 'connect_request.dart'; // ************************************************************************** Serializer _$connectRequestSerializer = - new _$ConnectRequestSerializer(); + _$ConnectRequestSerializer(); class _$ConnectRequestSerializer implements StructuredSerializer { @@ -49,7 +49,7 @@ class _$ConnectRequestSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ConnectRequestBuilder(); + final result = ConnectRequestBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -97,33 +97,19 @@ class _$ConnectRequest extends ConnectRequest { final String entrypointPath; factory _$ConnectRequest([void Function(ConnectRequestBuilder)? updates]) => - (new ConnectRequestBuilder()..update(updates))._build(); + (ConnectRequestBuilder()..update(updates))._build(); _$ConnectRequest._({ required this.appId, required this.instanceId, required this.entrypointPath, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(appId, r'ConnectRequest', 'appId'); - BuiltValueNullFieldError.checkNotNull( - instanceId, - r'ConnectRequest', - 'instanceId', - ); - BuiltValueNullFieldError.checkNotNull( - entrypointPath, - r'ConnectRequest', - 'entrypointPath', - ); - } - + }) : super._(); @override ConnectRequest rebuild(void Function(ConnectRequestBuilder) updates) => (toBuilder()..update(updates)).build(); @override - ConnectRequestBuilder toBuilder() => - new ConnectRequestBuilder()..replace(this); + ConnectRequestBuilder toBuilder() => ConnectRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -186,7 +172,6 @@ class ConnectRequestBuilder @override void replace(ConnectRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ConnectRequest; } @@ -201,7 +186,7 @@ class ConnectRequestBuilder _$ConnectRequest _build() { final _$result = _$v ?? - new _$ConnectRequest._( + _$ConnectRequest._( appId: BuiltValueNullFieldError.checkNotNull( appId, r'ConnectRequest', diff --git a/dwds/lib/data/debug_event.g.dart b/dwds/lib/data/debug_event.g.dart index a4a316be1..c410c912d 100644 --- a/dwds/lib/data/debug_event.g.dart +++ b/dwds/lib/data/debug_event.g.dart @@ -6,9 +6,9 @@ part of 'debug_event.dart'; // BuiltValueGenerator // ************************************************************************** -Serializer _$debugEventSerializer = new _$DebugEventSerializer(); +Serializer _$debugEventSerializer = _$DebugEventSerializer(); Serializer _$batchedDebugEventsSerializer = - new _$BatchedDebugEventsSerializer(); + _$BatchedDebugEventsSerializer(); class _$DebugEventSerializer implements StructuredSerializer { @override @@ -46,7 +46,7 @@ class _$DebugEventSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new DebugEventBuilder(); + final result = DebugEventBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -117,7 +117,7 @@ class _$BatchedDebugEventsSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new BatchedDebugEventsBuilder(); + final result = BatchedDebugEventsBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -152,32 +152,19 @@ class _$DebugEvent extends DebugEvent { final int timestamp; factory _$DebugEvent([void Function(DebugEventBuilder)? updates]) => - (new DebugEventBuilder()..update(updates))._build(); + (DebugEventBuilder()..update(updates))._build(); _$DebugEvent._({ required this.kind, required this.eventData, required this.timestamp, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(kind, r'DebugEvent', 'kind'); - BuiltValueNullFieldError.checkNotNull( - eventData, - r'DebugEvent', - 'eventData', - ); - BuiltValueNullFieldError.checkNotNull( - timestamp, - r'DebugEvent', - 'timestamp', - ); - } - + }) : super._(); @override DebugEvent rebuild(void Function(DebugEventBuilder) updates) => (toBuilder()..update(updates)).build(); @override - DebugEventBuilder toBuilder() => new DebugEventBuilder()..replace(this); + DebugEventBuilder toBuilder() => DebugEventBuilder()..replace(this); @override bool operator ==(Object other) { @@ -238,7 +225,6 @@ class DebugEventBuilder implements Builder { @override void replace(DebugEvent other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$DebugEvent; } @@ -253,7 +239,7 @@ class DebugEventBuilder implements Builder { _$DebugEvent _build() { final _$result = _$v ?? - new _$DebugEvent._( + _$DebugEvent._( kind: BuiltValueNullFieldError.checkNotNull( kind, r'DebugEvent', @@ -281,16 +267,9 @@ class _$BatchedDebugEvents extends BatchedDebugEvents { factory _$BatchedDebugEvents([ void Function(BatchedDebugEventsBuilder)? updates, - ]) => (new BatchedDebugEventsBuilder()..update(updates))._build(); - - _$BatchedDebugEvents._({required this.events}) : super._() { - BuiltValueNullFieldError.checkNotNull( - events, - r'BatchedDebugEvents', - 'events', - ); - } + ]) => (BatchedDebugEventsBuilder()..update(updates))._build(); + _$BatchedDebugEvents._({required this.events}) : super._(); @override BatchedDebugEvents rebuild( void Function(BatchedDebugEventsBuilder) updates, @@ -298,7 +277,7 @@ class _$BatchedDebugEvents extends BatchedDebugEvents { @override BatchedDebugEventsBuilder toBuilder() => - new BatchedDebugEventsBuilder()..replace(this); + BatchedDebugEventsBuilder()..replace(this); @override bool operator ==(Object other) { @@ -327,7 +306,7 @@ class BatchedDebugEventsBuilder ListBuilder? _events; ListBuilder get events => - _$this._events ??= new ListBuilder(); + _$this._events ??= ListBuilder(); set events(ListBuilder? events) => _$this._events = events; BatchedDebugEventsBuilder(); @@ -343,7 +322,6 @@ class BatchedDebugEventsBuilder @override void replace(BatchedDebugEvents other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$BatchedDebugEvents; } @@ -358,14 +336,14 @@ class BatchedDebugEventsBuilder _$BatchedDebugEvents _build() { _$BatchedDebugEvents _$result; try { - _$result = _$v ?? new _$BatchedDebugEvents._(events: events.build()); + _$result = _$v ?? _$BatchedDebugEvents._(events: events.build()); } catch (_) { late String _$failedField; try { _$failedField = 'events'; events.build(); } catch (e) { - throw new BuiltValueNestedFieldError( + throw BuiltValueNestedFieldError( r'BatchedDebugEvents', _$failedField, e.toString(), diff --git a/dwds/lib/data/debug_info.g.dart b/dwds/lib/data/debug_info.g.dart index 15e5cab5f..b1d0d5ad6 100644 --- a/dwds/lib/data/debug_info.g.dart +++ b/dwds/lib/data/debug_info.g.dart @@ -6,7 +6,7 @@ part of 'debug_info.dart'; // BuiltValueGenerator // ************************************************************************** -Serializer _$debugInfoSerializer = new _$DebugInfoSerializer(); +Serializer _$debugInfoSerializer = _$DebugInfoSerializer(); class _$DebugInfoSerializer implements StructuredSerializer { @override @@ -133,7 +133,7 @@ class _$DebugInfoSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new DebugInfoBuilder(); + final result = DebugInfoBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -278,7 +278,7 @@ class _$DebugInfo extends DebugInfo { final int? tabId; factory _$DebugInfo([void Function(DebugInfoBuilder)? updates]) => - (new DebugInfoBuilder()..update(updates))._build(); + (DebugInfoBuilder()..update(updates))._build(); _$DebugInfo._({ this.appEntrypointPath, @@ -295,13 +295,12 @@ class _$DebugInfo extends DebugInfo { this.tabUrl, this.tabId, }) : super._(); - @override DebugInfo rebuild(void Function(DebugInfoBuilder) updates) => (toBuilder()..update(updates)).build(); @override - DebugInfoBuilder toBuilder() => new DebugInfoBuilder()..replace(this); + DebugInfoBuilder toBuilder() => DebugInfoBuilder()..replace(this); @override bool operator ==(Object other) { @@ -446,7 +445,6 @@ class DebugInfoBuilder implements Builder { @override void replace(DebugInfo other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$DebugInfo; } @@ -461,7 +459,7 @@ class DebugInfoBuilder implements Builder { _$DebugInfo _build() { final _$result = _$v ?? - new _$DebugInfo._( + _$DebugInfo._( appEntrypointPath: appEntrypointPath, appId: appId, appInstanceId: appInstanceId, diff --git a/dwds/lib/data/devtools_request.g.dart b/dwds/lib/data/devtools_request.g.dart index 10f6ea35c..b5820ae8c 100644 --- a/dwds/lib/data/devtools_request.g.dart +++ b/dwds/lib/data/devtools_request.g.dart @@ -7,9 +7,9 @@ part of 'devtools_request.dart'; // ************************************************************************** Serializer _$devToolsRequestSerializer = - new _$DevToolsRequestSerializer(); + _$DevToolsRequestSerializer(); Serializer _$devToolsResponseSerializer = - new _$DevToolsResponseSerializer(); + _$DevToolsResponseSerializer(); class _$DevToolsRequestSerializer implements StructuredSerializer { @@ -76,7 +76,7 @@ class _$DevToolsRequestSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new DevToolsRequestBuilder(); + final result = DevToolsRequestBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -179,7 +179,7 @@ class _$DevToolsResponseSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new DevToolsResponseBuilder(); + final result = DevToolsResponseBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -233,7 +233,7 @@ class _$DevToolsRequest extends DevToolsRequest { final String? client; factory _$DevToolsRequest([void Function(DevToolsRequestBuilder)? updates]) => - (new DevToolsRequestBuilder()..update(updates))._build(); + (DevToolsRequestBuilder()..update(updates))._build(); _$DevToolsRequest._({ required this.appId, @@ -242,22 +242,13 @@ class _$DevToolsRequest extends DevToolsRequest { this.tabUrl, this.uriOnly, this.client, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(appId, r'DevToolsRequest', 'appId'); - BuiltValueNullFieldError.checkNotNull( - instanceId, - r'DevToolsRequest', - 'instanceId', - ); - } - + }) : super._(); @override DevToolsRequest rebuild(void Function(DevToolsRequestBuilder) updates) => (toBuilder()..update(updates)).build(); @override - DevToolsRequestBuilder toBuilder() => - new DevToolsRequestBuilder()..replace(this); + DevToolsRequestBuilder toBuilder() => DevToolsRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -343,7 +334,6 @@ class DevToolsRequestBuilder @override void replace(DevToolsRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$DevToolsRequest; } @@ -358,7 +348,7 @@ class DevToolsRequestBuilder _$DevToolsRequest _build() { final _$result = _$v ?? - new _$DevToolsRequest._( + _$DevToolsRequest._( appId: BuiltValueNullFieldError.checkNotNull( appId, r'DevToolsRequest', @@ -389,32 +379,20 @@ class _$DevToolsResponse extends DevToolsResponse { factory _$DevToolsResponse([ void Function(DevToolsResponseBuilder)? updates, - ]) => (new DevToolsResponseBuilder()..update(updates))._build(); + ]) => (DevToolsResponseBuilder()..update(updates))._build(); _$DevToolsResponse._({ required this.success, required this.promptExtension, this.error, - }) : super._() { - BuiltValueNullFieldError.checkNotNull( - success, - r'DevToolsResponse', - 'success', - ); - BuiltValueNullFieldError.checkNotNull( - promptExtension, - r'DevToolsResponse', - 'promptExtension', - ); - } - + }) : super._(); @override DevToolsResponse rebuild(void Function(DevToolsResponseBuilder) updates) => (toBuilder()..update(updates)).build(); @override DevToolsResponseBuilder toBuilder() => - new DevToolsResponseBuilder()..replace(this); + DevToolsResponseBuilder()..replace(this); @override bool operator ==(Object other) { @@ -477,7 +455,6 @@ class DevToolsResponseBuilder @override void replace(DevToolsResponse other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$DevToolsResponse; } @@ -492,7 +469,7 @@ class DevToolsResponseBuilder _$DevToolsResponse _build() { final _$result = _$v ?? - new _$DevToolsResponse._( + _$DevToolsResponse._( success: BuiltValueNullFieldError.checkNotNull( success, r'DevToolsResponse', diff --git a/dwds/lib/data/error_response.g.dart b/dwds/lib/data/error_response.g.dart index ad9bef755..d3e58e435 100644 --- a/dwds/lib/data/error_response.g.dart +++ b/dwds/lib/data/error_response.g.dart @@ -7,7 +7,7 @@ part of 'error_response.dart'; // ************************************************************************** Serializer _$errorResponseSerializer = - new _$ErrorResponseSerializer(); + _$ErrorResponseSerializer(); class _$ErrorResponseSerializer implements StructuredSerializer { @override @@ -43,7 +43,7 @@ class _$ErrorResponseSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ErrorResponseBuilder(); + final result = ErrorResponseBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -81,24 +81,16 @@ class _$ErrorResponse extends ErrorResponse { final String stackTrace; factory _$ErrorResponse([void Function(ErrorResponseBuilder)? updates]) => - (new ErrorResponseBuilder()..update(updates))._build(); + (ErrorResponseBuilder()..update(updates))._build(); _$ErrorResponse._({required this.error, required this.stackTrace}) - : super._() { - BuiltValueNullFieldError.checkNotNull(error, r'ErrorResponse', 'error'); - BuiltValueNullFieldError.checkNotNull( - stackTrace, - r'ErrorResponse', - 'stackTrace', - ); - } - + : super._(); @override ErrorResponse rebuild(void Function(ErrorResponseBuilder) updates) => (toBuilder()..update(updates)).build(); @override - ErrorResponseBuilder toBuilder() => new ErrorResponseBuilder()..replace(this); + ErrorResponseBuilder toBuilder() => ErrorResponseBuilder()..replace(this); @override bool operator ==(Object other) { @@ -152,7 +144,6 @@ class ErrorResponseBuilder @override void replace(ErrorResponse other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ErrorResponse; } @@ -167,7 +158,7 @@ class ErrorResponseBuilder _$ErrorResponse _build() { final _$result = _$v ?? - new _$ErrorResponse._( + _$ErrorResponse._( error: BuiltValueNullFieldError.checkNotNull( error, r'ErrorResponse', diff --git a/dwds/lib/data/extension_request.g.dart b/dwds/lib/data/extension_request.g.dart index 98a8a8da2..28e92d924 100644 --- a/dwds/lib/data/extension_request.g.dart +++ b/dwds/lib/data/extension_request.g.dart @@ -7,13 +7,13 @@ part of 'extension_request.dart'; // ************************************************************************** Serializer _$extensionRequestSerializer = - new _$ExtensionRequestSerializer(); + _$ExtensionRequestSerializer(); Serializer _$extensionResponseSerializer = - new _$ExtensionResponseSerializer(); + _$ExtensionResponseSerializer(); Serializer _$extensionEventSerializer = - new _$ExtensionEventSerializer(); + _$ExtensionEventSerializer(); Serializer _$batchedEventsSerializer = - new _$BatchedEventsSerializer(); + _$BatchedEventsSerializer(); class _$ExtensionRequestSerializer implements StructuredSerializer { @@ -55,7 +55,7 @@ class _$ExtensionRequestSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ExtensionRequestBuilder(); + final result = ExtensionRequestBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -139,7 +139,7 @@ class _$ExtensionResponseSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ExtensionResponseBuilder(); + final result = ExtensionResponseBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -221,7 +221,7 @@ class _$ExtensionEventSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ExtensionEventBuilder(); + final result = ExtensionEventBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -283,7 +283,7 @@ class _$BatchedEventsSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new BatchedEventsBuilder(); + final result = BatchedEventsBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -319,28 +319,20 @@ class _$ExtensionRequest extends ExtensionRequest { factory _$ExtensionRequest([ void Function(ExtensionRequestBuilder)? updates, - ]) => (new ExtensionRequestBuilder()..update(updates))._build(); + ]) => (ExtensionRequestBuilder()..update(updates))._build(); _$ExtensionRequest._({ required this.id, required this.command, this.commandParams, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'ExtensionRequest', 'id'); - BuiltValueNullFieldError.checkNotNull( - command, - r'ExtensionRequest', - 'command', - ); - } - + }) : super._(); @override ExtensionRequest rebuild(void Function(ExtensionRequestBuilder) updates) => (toBuilder()..update(updates)).build(); @override ExtensionRequestBuilder toBuilder() => - new ExtensionRequestBuilder()..replace(this); + ExtensionRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -403,7 +395,6 @@ class ExtensionRequestBuilder @override void replace(ExtensionRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ExtensionRequest; } @@ -418,7 +409,7 @@ class ExtensionRequestBuilder _$ExtensionRequest _build() { final _$result = _$v ?? - new _$ExtensionRequest._( + _$ExtensionRequest._( id: BuiltValueNullFieldError.checkNotNull( id, r'ExtensionRequest', @@ -448,34 +439,21 @@ class _$ExtensionResponse extends ExtensionResponse { factory _$ExtensionResponse([ void Function(ExtensionResponseBuilder)? updates, - ]) => (new ExtensionResponseBuilder()..update(updates))._build(); + ]) => (ExtensionResponseBuilder()..update(updates))._build(); _$ExtensionResponse._({ required this.id, required this.success, required this.result, this.error, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'ExtensionResponse', 'id'); - BuiltValueNullFieldError.checkNotNull( - success, - r'ExtensionResponse', - 'success', - ); - BuiltValueNullFieldError.checkNotNull( - result, - r'ExtensionResponse', - 'result', - ); - } - + }) : super._(); @override ExtensionResponse rebuild(void Function(ExtensionResponseBuilder) updates) => (toBuilder()..update(updates)).build(); @override ExtensionResponseBuilder toBuilder() => - new ExtensionResponseBuilder()..replace(this); + ExtensionResponseBuilder()..replace(this); @override bool operator ==(Object other) { @@ -545,7 +523,6 @@ class ExtensionResponseBuilder @override void replace(ExtensionResponse other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ExtensionResponse; } @@ -560,7 +537,7 @@ class ExtensionResponseBuilder _$ExtensionResponse _build() { final _$result = _$v ?? - new _$ExtensionResponse._( + _$ExtensionResponse._( id: BuiltValueNullFieldError.checkNotNull( id, r'ExtensionResponse', @@ -590,20 +567,15 @@ class _$ExtensionEvent extends ExtensionEvent { final String method; factory _$ExtensionEvent([void Function(ExtensionEventBuilder)? updates]) => - (new ExtensionEventBuilder()..update(updates))._build(); - - _$ExtensionEvent._({required this.params, required this.method}) : super._() { - BuiltValueNullFieldError.checkNotNull(params, r'ExtensionEvent', 'params'); - BuiltValueNullFieldError.checkNotNull(method, r'ExtensionEvent', 'method'); - } + (ExtensionEventBuilder()..update(updates))._build(); + _$ExtensionEvent._({required this.params, required this.method}) : super._(); @override ExtensionEvent rebuild(void Function(ExtensionEventBuilder) updates) => (toBuilder()..update(updates)).build(); @override - ExtensionEventBuilder toBuilder() => - new ExtensionEventBuilder()..replace(this); + ExtensionEventBuilder toBuilder() => ExtensionEventBuilder()..replace(this); @override bool operator ==(Object other) { @@ -657,7 +629,6 @@ class ExtensionEventBuilder @override void replace(ExtensionEvent other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ExtensionEvent; } @@ -672,7 +643,7 @@ class ExtensionEventBuilder _$ExtensionEvent _build() { final _$result = _$v ?? - new _$ExtensionEvent._( + _$ExtensionEvent._( params: BuiltValueNullFieldError.checkNotNull( params, r'ExtensionEvent', @@ -694,18 +665,15 @@ class _$BatchedEvents extends BatchedEvents { final BuiltList events; factory _$BatchedEvents([void Function(BatchedEventsBuilder)? updates]) => - (new BatchedEventsBuilder()..update(updates))._build(); - - _$BatchedEvents._({required this.events}) : super._() { - BuiltValueNullFieldError.checkNotNull(events, r'BatchedEvents', 'events'); - } + (BatchedEventsBuilder()..update(updates))._build(); + _$BatchedEvents._({required this.events}) : super._(); @override BatchedEvents rebuild(void Function(BatchedEventsBuilder) updates) => (toBuilder()..update(updates)).build(); @override - BatchedEventsBuilder toBuilder() => new BatchedEventsBuilder()..replace(this); + BatchedEventsBuilder toBuilder() => BatchedEventsBuilder()..replace(this); @override bool operator ==(Object other) { @@ -734,7 +702,7 @@ class BatchedEventsBuilder ListBuilder? _events; ListBuilder get events => - _$this._events ??= new ListBuilder(); + _$this._events ??= ListBuilder(); set events(ListBuilder? events) => _$this._events = events; BatchedEventsBuilder(); @@ -750,7 +718,6 @@ class BatchedEventsBuilder @override void replace(BatchedEvents other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$BatchedEvents; } @@ -765,14 +732,14 @@ class BatchedEventsBuilder _$BatchedEvents _build() { _$BatchedEvents _$result; try { - _$result = _$v ?? new _$BatchedEvents._(events: events.build()); + _$result = _$v ?? _$BatchedEvents._(events: events.build()); } catch (_) { late String _$failedField; try { _$failedField = 'events'; events.build(); } catch (e) { - throw new BuiltValueNestedFieldError( + throw BuiltValueNestedFieldError( r'BatchedEvents', _$failedField, e.toString(), diff --git a/dwds/lib/data/hot_reload_request.g.dart b/dwds/lib/data/hot_reload_request.g.dart index d45012443..9d139d717 100644 --- a/dwds/lib/data/hot_reload_request.g.dart +++ b/dwds/lib/data/hot_reload_request.g.dart @@ -7,7 +7,7 @@ part of 'hot_reload_request.dart'; // ************************************************************************** Serializer _$hotReloadRequestSerializer = - new _$HotReloadRequestSerializer(); + _$HotReloadRequestSerializer(); class _$HotReloadRequestSerializer implements StructuredSerializer { @@ -36,7 +36,7 @@ class _$HotReloadRequestSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new HotReloadRequestBuilder(); + final result = HotReloadRequestBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -65,19 +65,16 @@ class _$HotReloadRequest extends HotReloadRequest { factory _$HotReloadRequest([ void Function(HotReloadRequestBuilder)? updates, - ]) => (new HotReloadRequestBuilder()..update(updates))._build(); - - _$HotReloadRequest._({required this.id}) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'HotReloadRequest', 'id'); - } + ]) => (HotReloadRequestBuilder()..update(updates))._build(); + _$HotReloadRequest._({required this.id}) : super._(); @override HotReloadRequest rebuild(void Function(HotReloadRequestBuilder) updates) => (toBuilder()..update(updates)).build(); @override HotReloadRequestBuilder toBuilder() => - new HotReloadRequestBuilder()..replace(this); + HotReloadRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -121,7 +118,6 @@ class HotReloadRequestBuilder @override void replace(HotReloadRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$HotReloadRequest; } @@ -136,7 +132,7 @@ class HotReloadRequestBuilder _$HotReloadRequest _build() { final _$result = _$v ?? - new _$HotReloadRequest._( + _$HotReloadRequest._( id: BuiltValueNullFieldError.checkNotNull( id, r'HotReloadRequest', diff --git a/dwds/lib/data/hot_reload_response.g.dart b/dwds/lib/data/hot_reload_response.g.dart index 94da6edf5..1cb721fa5 100644 --- a/dwds/lib/data/hot_reload_response.g.dart +++ b/dwds/lib/data/hot_reload_response.g.dart @@ -7,7 +7,7 @@ part of 'hot_reload_response.dart'; // ************************************************************************** Serializer _$hotReloadResponseSerializer = - new _$HotReloadResponseSerializer(); + _$HotReloadResponseSerializer(); class _$HotReloadResponseSerializer implements StructuredSerializer { @@ -49,7 +49,7 @@ class _$HotReloadResponseSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new HotReloadResponseBuilder(); + final result = HotReloadResponseBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -98,28 +98,20 @@ class _$HotReloadResponse extends HotReloadResponse { factory _$HotReloadResponse([ void Function(HotReloadResponseBuilder)? updates, - ]) => (new HotReloadResponseBuilder()..update(updates))._build(); + ]) => (HotReloadResponseBuilder()..update(updates))._build(); _$HotReloadResponse._({ required this.id, required this.success, this.errorMessage, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'HotReloadResponse', 'id'); - BuiltValueNullFieldError.checkNotNull( - success, - r'HotReloadResponse', - 'success', - ); - } - + }) : super._(); @override HotReloadResponse rebuild(void Function(HotReloadResponseBuilder) updates) => (toBuilder()..update(updates)).build(); @override HotReloadResponseBuilder toBuilder() => - new HotReloadResponseBuilder()..replace(this); + HotReloadResponseBuilder()..replace(this); @override bool operator ==(Object other) { @@ -181,7 +173,6 @@ class HotReloadResponseBuilder @override void replace(HotReloadResponse other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$HotReloadResponse; } @@ -196,7 +187,7 @@ class HotReloadResponseBuilder _$HotReloadResponse _build() { final _$result = _$v ?? - new _$HotReloadResponse._( + _$HotReloadResponse._( id: BuiltValueNullFieldError.checkNotNull( id, r'HotReloadResponse', diff --git a/dwds/lib/data/isolate_events.g.dart b/dwds/lib/data/isolate_events.g.dart index b6c99bfe9..84218966a 100644 --- a/dwds/lib/data/isolate_events.g.dart +++ b/dwds/lib/data/isolate_events.g.dart @@ -6,9 +6,8 @@ part of 'isolate_events.dart'; // BuiltValueGenerator // ************************************************************************** -Serializer _$isolateExitSerializer = new _$IsolateExitSerializer(); -Serializer _$isolateStartSerializer = - new _$IsolateStartSerializer(); +Serializer _$isolateExitSerializer = _$IsolateExitSerializer(); +Serializer _$isolateStartSerializer = _$IsolateStartSerializer(); class _$IsolateExitSerializer implements StructuredSerializer { @override @@ -31,7 +30,7 @@ class _$IsolateExitSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - return new IsolateExitBuilder().build(); + return IsolateExitBuilder().build(); } } @@ -56,22 +55,21 @@ class _$IsolateStartSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - return new IsolateStartBuilder().build(); + return IsolateStartBuilder().build(); } } class _$IsolateExit extends IsolateExit { factory _$IsolateExit([void Function(IsolateExitBuilder)? updates]) => - (new IsolateExitBuilder()..update(updates))._build(); + (IsolateExitBuilder()..update(updates))._build(); _$IsolateExit._() : super._(); - @override IsolateExit rebuild(void Function(IsolateExitBuilder) updates) => (toBuilder()..update(updates)).build(); @override - IsolateExitBuilder toBuilder() => new IsolateExitBuilder()..replace(this); + IsolateExitBuilder toBuilder() => IsolateExitBuilder()..replace(this); @override bool operator ==(Object other) { @@ -97,7 +95,6 @@ class IsolateExitBuilder implements Builder { @override void replace(IsolateExit other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$IsolateExit; } @@ -110,7 +107,7 @@ class IsolateExitBuilder implements Builder { IsolateExit build() => _build(); _$IsolateExit _build() { - final _$result = _$v ?? new _$IsolateExit._(); + final _$result = _$v ?? _$IsolateExit._(); replace(_$result); return _$result; } @@ -118,16 +115,15 @@ class IsolateExitBuilder implements Builder { class _$IsolateStart extends IsolateStart { factory _$IsolateStart([void Function(IsolateStartBuilder)? updates]) => - (new IsolateStartBuilder()..update(updates))._build(); + (IsolateStartBuilder()..update(updates))._build(); _$IsolateStart._() : super._(); - @override IsolateStart rebuild(void Function(IsolateStartBuilder) updates) => (toBuilder()..update(updates)).build(); @override - IsolateStartBuilder toBuilder() => new IsolateStartBuilder()..replace(this); + IsolateStartBuilder toBuilder() => IsolateStartBuilder()..replace(this); @override bool operator ==(Object other) { @@ -154,7 +150,6 @@ class IsolateStartBuilder @override void replace(IsolateStart other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$IsolateStart; } @@ -167,7 +162,7 @@ class IsolateStartBuilder IsolateStart build() => _build(); _$IsolateStart _build() { - final _$result = _$v ?? new _$IsolateStart._(); + final _$result = _$v ?? _$IsolateStart._(); replace(_$result); return _$result; } diff --git a/dwds/lib/data/register_event.g.dart b/dwds/lib/data/register_event.g.dart index 6674c8e5f..1d22e6a14 100644 --- a/dwds/lib/data/register_event.g.dart +++ b/dwds/lib/data/register_event.g.dart @@ -7,7 +7,7 @@ part of 'register_event.dart'; // ************************************************************************** Serializer _$registerEventSerializer = - new _$RegisterEventSerializer(); + _$RegisterEventSerializer(); class _$RegisterEventSerializer implements StructuredSerializer { @override @@ -43,7 +43,7 @@ class _$RegisterEventSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new RegisterEventBuilder(); + final result = RegisterEventBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -81,28 +81,16 @@ class _$RegisterEvent extends RegisterEvent { final int timestamp; factory _$RegisterEvent([void Function(RegisterEventBuilder)? updates]) => - (new RegisterEventBuilder()..update(updates))._build(); + (RegisterEventBuilder()..update(updates))._build(); _$RegisterEvent._({required this.eventData, required this.timestamp}) - : super._() { - BuiltValueNullFieldError.checkNotNull( - eventData, - r'RegisterEvent', - 'eventData', - ); - BuiltValueNullFieldError.checkNotNull( - timestamp, - r'RegisterEvent', - 'timestamp', - ); - } - + : super._(); @override RegisterEvent rebuild(void Function(RegisterEventBuilder) updates) => (toBuilder()..update(updates)).build(); @override - RegisterEventBuilder toBuilder() => new RegisterEventBuilder()..replace(this); + RegisterEventBuilder toBuilder() => RegisterEventBuilder()..replace(this); @override bool operator ==(Object other) { @@ -156,7 +144,6 @@ class RegisterEventBuilder @override void replace(RegisterEvent other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$RegisterEvent; } @@ -171,7 +158,7 @@ class RegisterEventBuilder _$RegisterEvent _build() { final _$result = _$v ?? - new _$RegisterEvent._( + _$RegisterEvent._( eventData: BuiltValueNullFieldError.checkNotNull( eventData, r'RegisterEvent', diff --git a/dwds/lib/data/run_request.g.dart b/dwds/lib/data/run_request.g.dart index a30ad26f4..374c6a4f2 100644 --- a/dwds/lib/data/run_request.g.dart +++ b/dwds/lib/data/run_request.g.dart @@ -6,7 +6,7 @@ part of 'run_request.dart'; // BuiltValueGenerator // ************************************************************************** -Serializer _$runRequestSerializer = new _$RunRequestSerializer(); +Serializer _$runRequestSerializer = _$RunRequestSerializer(); class _$RunRequestSerializer implements StructuredSerializer { @override @@ -29,22 +29,21 @@ class _$RunRequestSerializer implements StructuredSerializer { Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - return new RunRequestBuilder().build(); + return RunRequestBuilder().build(); } } class _$RunRequest extends RunRequest { factory _$RunRequest([void Function(RunRequestBuilder)? updates]) => - (new RunRequestBuilder()..update(updates))._build(); + (RunRequestBuilder()..update(updates))._build(); _$RunRequest._() : super._(); - @override RunRequest rebuild(void Function(RunRequestBuilder) updates) => (toBuilder()..update(updates)).build(); @override - RunRequestBuilder toBuilder() => new RunRequestBuilder()..replace(this); + RunRequestBuilder toBuilder() => RunRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -70,7 +69,6 @@ class RunRequestBuilder implements Builder { @override void replace(RunRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$RunRequest; } @@ -83,7 +81,7 @@ class RunRequestBuilder implements Builder { RunRequest build() => _build(); _$RunRequest _build() { - final _$result = _$v ?? new _$RunRequest._(); + final _$result = _$v ?? _$RunRequest._(); replace(_$result); return _$result; } diff --git a/dwds/lib/data/service_extension_request.g.dart b/dwds/lib/data/service_extension_request.g.dart index 94379fd36..a99e784a4 100644 --- a/dwds/lib/data/service_extension_request.g.dart +++ b/dwds/lib/data/service_extension_request.g.dart @@ -7,7 +7,7 @@ part of 'service_extension_request.dart'; // ************************************************************************** Serializer _$serviceExtensionRequestSerializer = - new _$ServiceExtensionRequestSerializer(); + _$ServiceExtensionRequestSerializer(); class _$ServiceExtensionRequestSerializer implements StructuredSerializer { @@ -49,7 +49,7 @@ class _$ServiceExtensionRequestSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ServiceExtensionRequestBuilder(); + final result = ServiceExtensionRequestBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -98,26 +98,13 @@ class _$ServiceExtensionRequest extends ServiceExtensionRequest { factory _$ServiceExtensionRequest([ void Function(ServiceExtensionRequestBuilder)? updates, - ]) => (new ServiceExtensionRequestBuilder()..update(updates))._build(); + ]) => (ServiceExtensionRequestBuilder()..update(updates))._build(); _$ServiceExtensionRequest._({ required this.id, required this.method, required this.argsJson, - }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'ServiceExtensionRequest', 'id'); - BuiltValueNullFieldError.checkNotNull( - method, - r'ServiceExtensionRequest', - 'method', - ); - BuiltValueNullFieldError.checkNotNull( - argsJson, - r'ServiceExtensionRequest', - 'argsJson', - ); - } - + }) : super._(); @override ServiceExtensionRequest rebuild( void Function(ServiceExtensionRequestBuilder) updates, @@ -125,7 +112,7 @@ class _$ServiceExtensionRequest extends ServiceExtensionRequest { @override ServiceExtensionRequestBuilder toBuilder() => - new ServiceExtensionRequestBuilder()..replace(this); + ServiceExtensionRequestBuilder()..replace(this); @override bool operator ==(Object other) { @@ -188,7 +175,6 @@ class ServiceExtensionRequestBuilder @override void replace(ServiceExtensionRequest other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ServiceExtensionRequest; } @@ -203,7 +189,7 @@ class ServiceExtensionRequestBuilder _$ServiceExtensionRequest _build() { final _$result = _$v ?? - new _$ServiceExtensionRequest._( + _$ServiceExtensionRequest._( id: BuiltValueNullFieldError.checkNotNull( id, r'ServiceExtensionRequest', diff --git a/dwds/lib/data/service_extension_response.g.dart b/dwds/lib/data/service_extension_response.g.dart index e840cf2b4..f758aa2fa 100644 --- a/dwds/lib/data/service_extension_response.g.dart +++ b/dwds/lib/data/service_extension_response.g.dart @@ -7,7 +7,7 @@ part of 'service_extension_response.dart'; // ************************************************************************** Serializer _$serviceExtensionResponseSerializer = - new _$ServiceExtensionResponseSerializer(); + _$ServiceExtensionResponseSerializer(); class _$ServiceExtensionResponseSerializer implements StructuredSerializer { @@ -66,7 +66,7 @@ class _$ServiceExtensionResponseSerializer Iterable serialized, { FullType specifiedType = FullType.unspecified, }) { - final result = new ServiceExtensionResponseBuilder(); + final result = ServiceExtensionResponseBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { @@ -132,7 +132,7 @@ class _$ServiceExtensionResponse extends ServiceExtensionResponse { factory _$ServiceExtensionResponse([ void Function(ServiceExtensionResponseBuilder)? updates, - ]) => (new ServiceExtensionResponseBuilder()..update(updates))._build(); + ]) => (ServiceExtensionResponseBuilder()..update(updates))._build(); _$ServiceExtensionResponse._({ required this.id, @@ -140,19 +140,7 @@ class _$ServiceExtensionResponse extends ServiceExtensionResponse { required this.success, this.errorCode, this.errorMessage, - }) : super._() { - BuiltValueNullFieldError.checkNotNull( - id, - r'ServiceExtensionResponse', - 'id', - ); - BuiltValueNullFieldError.checkNotNull( - success, - r'ServiceExtensionResponse', - 'success', - ); - } - + }) : super._(); @override ServiceExtensionResponse rebuild( void Function(ServiceExtensionResponseBuilder) updates, @@ -160,7 +148,7 @@ class _$ServiceExtensionResponse extends ServiceExtensionResponse { @override ServiceExtensionResponseBuilder toBuilder() => - new ServiceExtensionResponseBuilder()..replace(this); + ServiceExtensionResponseBuilder()..replace(this); @override bool operator ==(Object other) { @@ -239,7 +227,6 @@ class ServiceExtensionResponseBuilder @override void replace(ServiceExtensionResponse other) { - ArgumentError.checkNotNull(other, 'other'); _$v = other as _$ServiceExtensionResponse; } @@ -254,7 +241,7 @@ class ServiceExtensionResponseBuilder _$ServiceExtensionResponse _build() { final _$result = _$v ?? - new _$ServiceExtensionResponse._( + _$ServiceExtensionResponse._( id: BuiltValueNullFieldError.checkNotNull( id, r'ServiceExtensionResponse', diff --git a/dwds/lib/src/debugging/metadata/provider.dart b/dwds/lib/src/debugging/metadata/provider.dart index 86fb5e730..e86a81216 100644 --- a/dwds/lib/src/debugging/metadata/provider.dart +++ b/dwds/lib/src/debugging/metadata/provider.dart @@ -67,15 +67,6 @@ class MetadataProvider { MetadataProvider(this.entrypoint, this._assetReader); - /// A sound null safety mode for the whole app. - /// - /// All libraries have to agree on null safety mode. - @Deprecated('Only sound null safety is supported as of Dart 3.0') - Future get soundNullSafety async { - await _initialize(); - return true; - } - /// A list of all libraries in the Dart application. /// /// Example: diff --git a/dwds/lib/src/injected/client.js b/dwds/lib/src/injected/client.js index b362e61fa..e04e06f8c 100644 --- a/dwds/lib/src/injected/client.js +++ b/dwds/lib/src/injected/client.js @@ -1,4 +1,4 @@ -// Generated by dart2js (, csp, intern-composite-values), the Dart to JavaScript compiler version: 3.10.0-edge. +// Generated by dart2js (, csp, intern-composite-values), the Dart to JavaScript compiler version: 3.9.0-333.4.beta. // The code supports the following hooks: // dartPrint(message): // if this function is defined it is called instead of the Dart [print] @@ -8950,6 +8950,10 @@ this.iterator = t1; this.$ti = t2; }, + RequestAbortedException: function RequestAbortedException(t0, t1) { + this.message = t0; + this.uri = t1; + }, BaseClient: function BaseClient() { }, BaseRequest: function BaseRequest() { @@ -8961,7 +8965,13 @@ BaseResponse: function BaseResponse() { }, _rethrowAsClientException(e, st, request) { - var message; + var t1, message; + if (type$.JSObject._is(e)) + t1 = A._asString(e.name) === "AbortError"; + else + t1 = false; + if (t1) + A.Error_throwWithStackTrace(new A.RequestAbortedException("Request aborted by `abortTrigger`", request.url), st); if (!(e instanceof A.ClientException)) { message = J.toString$0$(e); if (B.JSString_methods.startsWith$1(message, "TypeError: ")) @@ -9100,8 +9110,8 @@ return A._streamOfController($async$controller); }, BrowserClient: function BrowserClient(t0) { - this._abortController = t0; this.withCredentials = false; + this._openRequestAbortControllers = t0; }, BrowserClient_send_closure: function BrowserClient_send_closure(t0) { this.headers = t0; @@ -10026,7 +10036,7 @@ switch ($async$goto) { case 0: // Function start - client = new A.BrowserClient(A._asJSObject(new init.G.AbortController())); + client = new A.BrowserClient(A._setArrayType([], type$.JSArray_JSObject)); client.withCredentials = true; $async$goto = 3; return A._asyncAwait(client._sendUnstreamed$3("GET", A.Uri_parse(authUrl), null), $async$_authenticateUser); @@ -10944,6 +10954,16 @@ throw A.wrapException(A.diagnoseIndexError(receiver, -1)); return receiver.pop(); }, + remove$1(receiver, element) { + var i; + receiver.$flags & 1 && A.throwUnsupportedOperation(receiver, "remove", 1); + for (i = 0; i < receiver.length; ++i) + if (J.$eq$(receiver[i], element)) { + receiver.splice(i, 1); + return true; + } + return false; + }, _removeWhere$2(receiver, test, removeMatching) { var retained, end, i, element, t1; A._arrayInstanceType(receiver)._eval$1("bool(1)")._as(test); @@ -22448,7 +22468,6 @@ }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, value, $$v, _$result, - _s11_ = "BuildResult", result = new A.BuildResultBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); for (t1 = type$.BuildStatus; iterator.moveNext$0();) { @@ -22472,13 +22491,7 @@ } } _$result = result._build_result$_$v; - if (_$result == null) { - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_build_result$_$this()._status, _s11_, "status", t1); - _$result = new A._$BuildResult(t2); - A.BuiltValueNullFieldError_checkNotNull(t2, _s11_, "status", t1); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.BuildResult); - return result._build_result$_$v = _$result; + return result._build_result$_$v = _$result == null ? new A._$BuildResult(A.BuiltValueNullFieldError_checkNotNull(result.get$_build_result$_$this()._status, "BuildResult", "status", t1)) : _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); @@ -22609,22 +22622,13 @@ return _this; }, _connect_request$_build$0() { - var t1, t2, t3, t4, _this = this, + var t1, _this = this, _s14_ = "ConnectRequest", - _s10_ = "instanceId", - _s14_0 = "entrypointPath", _$result = _this._connect_request$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._connect_request$_appId, _s14_, "appId", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._instanceId, _s14_, _s10_, t1); - t4 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._entrypointPath, _s14_, _s14_0, t1); - _$result = new A._$ConnectRequest(t2, t3, t4); - A.BuiltValueNullFieldError_checkNotNull(t2, _s14_, "appId", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s14_, _s10_, t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s14_, _s14_0, t1); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.ConnectRequest); + _$result = new A._$ConnectRequest(A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._connect_request$_appId, _s14_, "appId", t1), A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._instanceId, _s14_, "instanceId", t1), A.BuiltValueNullFieldError_checkNotNull(_this.get$_connect_request$_$this()._entrypointPath, _s14_, "entrypointPath", t1)); + } return _this._connect_request$_$v = _$result; } }; @@ -22789,23 +22793,13 @@ return _this; }, _debug_event$_build$0() { - var t1, t2, t3, t4, t5, _this = this, + var t1, _this = this, _s10_ = "DebugEvent", - _s9_ = "eventData", - _s9_0 = "timestamp", _$result = _this._debug_event$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._debug_event$_kind, _s10_, "kind", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._eventData, _s10_, _s9_, t1); - t4 = type$.int; - t5 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._timestamp, _s10_, _s9_0, t4); - _$result = new A._$DebugEvent(t2, t3, t5); - A.BuiltValueNullFieldError_checkNotNull(t2, _s10_, "kind", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s10_, _s9_, t1); - A.BuiltValueNullFieldError_checkNotNull(t5, _s10_, _s9_0, t4); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.DebugEvent); + _$result = new A._$DebugEvent(A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._debug_event$_kind, _s10_, "kind", t1), A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._eventData, _s10_, "eventData", t1), A.BuiltValueNullFieldError_checkNotNull(_this.get$_debug_event$_$this()._timestamp, _s10_, "timestamp", type$.int)); + } return _this._debug_event$_$v = _$result; } }; @@ -22850,17 +22844,10 @@ return _this; }, _debug_event$_build$0() { - var _$failedField, e, _$result0, t1, exception, t2, _this = this, - _s18_ = "BatchedDebugEvents", - _$result = null; + var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._debug_event$_$v; - if (_$result0 == null) { - t1 = _this.get$events().build$0(); - _$result0 = new A._$BatchedDebugEvents(t1); - A.BuiltValueNullFieldError_checkNotNull(t1, _s18_, "events", type$.BuiltList_DebugEvent); - } - _$result = _$result0; + _$result = _$result0 == null ? new A._$BatchedDebugEvents(_this.get$events().build$0()) : _$result0; } catch (exception) { _$failedField = A._Cell$named("_$failedField"); try { @@ -22868,15 +22855,12 @@ _this.get$events().build$0(); } catch (exception) { e = A.unwrapException(exception); - t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField.readLocal$0(), J.toString$0$(e)); + t1 = A.BuiltValueNestedFieldError$("BatchedDebugEvents", _$failedField.readLocal$0(), J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } - t1 = type$.BatchedDebugEvents; - t2 = t1._as(_$result); - A.ArgumentError_checkNotNull(t2, "other", t1); - _this._debug_event$_$v = t2; + _this._debug_event$_$v = type$.BatchedDebugEvents._as(_$result); return _$result; }, set$_events(_events) { @@ -23096,10 +23080,7 @@ _build$0() { var _this = this, _$result = _this._$v; - if (_$result == null) - _$result = new A._$DebugInfo(_this.get$_$this()._appEntrypointPath, _this.get$_$this()._appId, _this.get$_$this()._appInstanceId, _this.get$_$this()._appOrigin, _this.get$_$this()._appUrl, _this.get$_$this()._authUrl, _this.get$_$this()._dwdsVersion, _this.get$_$this()._extensionUrl, _this.get$_$this()._isInternalBuild, _this.get$_$this()._isFlutterApp, _this.get$_$this()._workspaceName, _this.get$_$this()._tabUrl, _this.get$_$this()._tabId); - A.ArgumentError_checkNotNull(_$result, "other", type$.DebugInfo); - return _this._$v = _$result; + return _this._$v = _$result == null ? new A._$DebugInfo(_this.get$_$this()._appEntrypointPath, _this.get$_$this()._appId, _this.get$_$this()._appInstanceId, _this.get$_$this()._appOrigin, _this.get$_$this()._appUrl, _this.get$_$this()._authUrl, _this.get$_$this()._dwdsVersion, _this.get$_$this()._extensionUrl, _this.get$_$this()._isInternalBuild, _this.get$_$this()._isFlutterApp, _this.get$_$this()._workspaceName, _this.get$_$this()._tabUrl, _this.get$_$this()._tabId) : _$result; } }; A.DevToolsRequest.prototype = {}; @@ -23205,8 +23186,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, _$result, t2, t3, - _s15_ = "promptExtension", + var t1, value, _$result, _s16_ = "DevToolsResponse", result = new A.DevToolsResponseBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -23238,13 +23218,8 @@ _$result = result._devtools_request$_$v; if (_$result == null) { t1 = type$.bool; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_devtools_request$_$this()._success, _s16_, "success", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(result.get$_devtools_request$_$this()._promptExtension, _s16_, _s15_, t1); - _$result = new A._$DevToolsResponse(t2, t3, result.get$_devtools_request$_$this()._error); - A.BuiltValueNullFieldError_checkNotNull(t2, _s16_, "success", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s16_, _s15_, t1); + _$result = new A._$DevToolsResponse(A.BuiltValueNullFieldError_checkNotNull(result.get$_devtools_request$_$this()._success, _s16_, "success", t1), A.BuiltValueNullFieldError_checkNotNull(result.get$_devtools_request$_$this()._promptExtension, _s16_, "promptExtension", t1), result.get$_devtools_request$_$this()._error); } - A.ArgumentError_checkNotNull(_$result, "other", type$.DevToolsResponse); return result._devtools_request$_$v = _$result; }, deserialize$2(serializers, serialized) { @@ -23301,19 +23276,13 @@ return _this; }, _devtools_request$_build$0() { - var t1, t2, t3, _this = this, + var t1, _this = this, _s15_ = "DevToolsRequest", - _s10_ = "instanceId", _$result = _this._devtools_request$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_devtools_request$_$this()._devtools_request$_appId, _s15_, "appId", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_devtools_request$_$this()._devtools_request$_instanceId, _s15_, _s10_, t1); - _$result = new A._$DevToolsRequest(t2, t3, _this.get$_devtools_request$_$this()._contextId, _this.get$_devtools_request$_$this()._devtools_request$_tabUrl, _this.get$_devtools_request$_$this()._uriOnly, _this.get$_devtools_request$_$this()._devtools_request$_client); - A.BuiltValueNullFieldError_checkNotNull(t2, _s15_, "appId", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s15_, _s10_, t1); + _$result = new A._$DevToolsRequest(A.BuiltValueNullFieldError_checkNotNull(_this.get$_devtools_request$_$this()._devtools_request$_appId, _s15_, "appId", t1), A.BuiltValueNullFieldError_checkNotNull(_this.get$_devtools_request$_$this()._devtools_request$_instanceId, _s15_, "instanceId", t1), _this.get$_devtools_request$_$this()._contextId, _this.get$_devtools_request$_$this()._devtools_request$_tabUrl, _this.get$_devtools_request$_$this()._uriOnly, _this.get$_devtools_request$_$this()._devtools_request$_client); } - A.ArgumentError_checkNotNull(_$result, "other", type$.DevToolsRequest); return _this._devtools_request$_$v = _$result; } }; @@ -23364,8 +23333,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, $$v, _$result, t2, t3, - _s10_ = "stackTrace", + var t1, value, $$v, _$result, _s13_ = "ErrorResponse", result = new A.ErrorResponseBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -23405,13 +23373,8 @@ _$result = result._error_response$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_error_response$_$this()._error_response$_error, _s13_, "error", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(result.get$_error_response$_$this()._error_response$_stackTrace, _s13_, _s10_, t1); - _$result = new A._$ErrorResponse(t2, t3); - A.BuiltValueNullFieldError_checkNotNull(t2, _s13_, "error", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s13_, _s10_, t1); + _$result = new A._$ErrorResponse(A.BuiltValueNullFieldError_checkNotNull(result.get$_error_response$_$this()._error_response$_error, _s13_, "error", t1), A.BuiltValueNullFieldError_checkNotNull(result.get$_error_response$_$this()._error_response$_stackTrace, _s13_, "stackTrace", t1)); } - A.ArgumentError_checkNotNull(_$result, "other", type$.ErrorResponse); return result._error_response$_$v = _$result; }, deserialize$2(serializers, serialized) { @@ -23477,7 +23440,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, _$result, t2, t3, t4, + var t1, value, _$result, _s16_ = "ExtensionRequest", result = new A.ExtensionRequestBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -23507,17 +23470,7 @@ } } _$result = result._extension_request$_$v; - if (_$result == null) { - t1 = type$.int; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._id, _s16_, "id", t1); - t3 = type$.String; - t4 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._command, _s16_, "command", t3); - _$result = new A._$ExtensionRequest(t2, t4, result.get$_extension_request$_$this()._commandParams); - A.BuiltValueNullFieldError_checkNotNull(t2, _s16_, "id", t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s16_, "command", t3); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.ExtensionRequest); - return result._extension_request$_$v = _$result; + return result._extension_request$_$v = _$result == null ? new A._$ExtensionRequest(A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._id, _s16_, "id", type$.int), A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._command, _s16_, "command", type$.String), result.get$_extension_request$_$this()._commandParams) : _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); @@ -23547,7 +23500,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, _$result, t2, t3, t4, t5, t6, + var t1, value, _$result, _s17_ = "ExtensionResponse", result = new A.ExtensionResponseBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -23583,20 +23536,7 @@ } } _$result = result._extension_request$_$v; - if (_$result == null) { - t1 = type$.int; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._id, _s17_, "id", t1); - t3 = type$.bool; - t4 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_success, _s17_, "success", t3); - t5 = type$.String; - t6 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_result, _s17_, "result", t5); - _$result = new A._$ExtensionResponse(t2, t4, t6, result.get$_extension_request$_$this()._extension_request$_error); - A.BuiltValueNullFieldError_checkNotNull(t2, _s17_, "id", t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s17_, "success", t3); - A.BuiltValueNullFieldError_checkNotNull(t6, _s17_, "result", t5); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.ExtensionResponse); - return result._extension_request$_$v = _$result; + return result._extension_request$_$v = _$result == null ? new A._$ExtensionResponse(A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._id, _s17_, "id", type$.int), A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_success, _s17_, "success", type$.bool), A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_result, _s17_, "result", type$.String), result.get$_extension_request$_$this()._extension_request$_error) : _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); @@ -23619,7 +23559,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, $$v, _$result, t2, t3, + var t1, value, $$v, _$result, _s14_ = "ExtensionEvent", result = new A.ExtensionEventBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -23659,13 +23599,8 @@ _$result = result._extension_request$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._params, _s14_, "params", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_method, _s14_, "method", t1); - _$result = new A._$ExtensionEvent(t2, t3); - A.BuiltValueNullFieldError_checkNotNull(t2, _s14_, "params", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s14_, "method", t1); + _$result = new A._$ExtensionEvent(A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._params, _s14_, "params", t1), A.BuiltValueNullFieldError_checkNotNull(result.get$_extension_request$_$this()._extension_request$_method, _s14_, "method", t1)); } - A.ArgumentError_checkNotNull(_$result, "other", type$.ExtensionEvent); return result._extension_request$_$v = _$result; }, deserialize$2(serializers, serialized) { @@ -23901,17 +23836,10 @@ return t1; }, _extension_request$_build$0() { - var _$failedField, e, _$result0, t1, exception, t2, _this = this, - _s13_ = "BatchedEvents", - _$result = null; + var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._extension_request$_$v; - if (_$result0 == null) { - t1 = _this.get$events().build$0(); - _$result0 = new A._$BatchedEvents(t1); - A.BuiltValueNullFieldError_checkNotNull(t1, _s13_, "events", type$.BuiltList_ExtensionEvent); - } - _$result = _$result0; + _$result = _$result0 == null ? new A._$BatchedEvents(_this.get$events().build$0()) : _$result0; } catch (exception) { _$failedField = A._Cell$named("_$failedField"); try { @@ -23919,15 +23847,12 @@ _this.get$events().build$0(); } catch (exception) { e = A.unwrapException(exception); - t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField.readLocal$0(), J.toString$0$(e)); + t1 = A.BuiltValueNestedFieldError$("BatchedEvents", _$failedField.readLocal$0(), J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } - t1 = type$.BatchedEvents; - t2 = t1._as(_$result); - A.ArgumentError_checkNotNull(t2, "other", t1); - _this._extension_request$_$v = t2; + _this._extension_request$_$v = type$.BatchedEvents._as(_$result); return _$result; }, set$_extension_request$_events(_events) { @@ -23943,8 +23868,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, $$v, _$result, t2, - _s16_ = "HotReloadRequest", + var t1, value, $$v, _$result, result = new A.HotReloadRequestBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); for (; iterator.moveNext$0();) { @@ -23968,14 +23892,7 @@ } } _$result = result._hot_reload_request$_$v; - if (_$result == null) { - t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_hot_reload_request$_$this()._hot_reload_request$_id, _s16_, "id", t1); - _$result = new A._$HotReloadRequest(t2); - A.BuiltValueNullFieldError_checkNotNull(t2, _s16_, "id", t1); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.HotReloadRequest); - return result._hot_reload_request$_$v = _$result; + return result._hot_reload_request$_$v = _$result == null ? new A._$HotReloadRequest(A.BuiltValueNullFieldError_checkNotNull(result.get$_hot_reload_request$_$this()._hot_reload_request$_id, "HotReloadRequest", "id", type$.String)) : _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); @@ -24123,20 +24040,10 @@ return _this; }, _hot_reload_response$_build$0() { - var t1, t2, t3, t4, _this = this, + var _this = this, _s17_ = "HotReloadResponse", _$result = _this._hot_reload_response$_$v; - if (_$result == null) { - t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_hot_reload_response$_$this()._hot_reload_response$_id, _s17_, "id", t1); - t3 = type$.bool; - t4 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_hot_reload_response$_$this()._hot_reload_response$_success, _s17_, "success", t3); - _$result = new A._$HotReloadResponse(t2, t4, _this.get$_hot_reload_response$_$this()._errorMessage); - A.BuiltValueNullFieldError_checkNotNull(t2, _s17_, "id", t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s17_, "success", t3); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.HotReloadResponse); - return _this._hot_reload_response$_$v = _$result; + return _this._hot_reload_response$_$v = _$result == null ? new A._$HotReloadResponse(A.BuiltValueNullFieldError_checkNotNull(_this.get$_hot_reload_response$_$this()._hot_reload_response$_id, _s17_, "id", type$.String), A.BuiltValueNullFieldError_checkNotNull(_this.get$_hot_reload_response$_$this()._hot_reload_response$_success, _s17_, "success", type$.bool), _this.get$_hot_reload_response$_$this()._errorMessage) : _$result; } }; A.HotRestartRequest.prototype = {}; @@ -24394,10 +24301,7 @@ A.IsolateExitBuilder.prototype = { _isolate_events$_build$0() { var _$result = this._isolate_events$_$v; - if (_$result == null) - _$result = new A._$IsolateExit(); - A.ArgumentError_checkNotNull(_$result, "other", type$.IsolateExit); - return this._isolate_events$_$v = _$result; + return this._isolate_events$_$v = _$result == null ? new A._$IsolateExit() : _$result; } }; A._$IsolateStart.prototype = { @@ -24418,10 +24322,7 @@ A.IsolateStartBuilder.prototype = { _isolate_events$_build$0() { var _$result = this._isolate_events$_$v; - if (_$result == null) - _$result = new A._$IsolateStart(); - A.ArgumentError_checkNotNull(_$result, "other", type$.IsolateStart); - return this._isolate_events$_$v = _$result; + return this._isolate_events$_$v = _$result == null ? new A._$IsolateStart() : _$result; } }; A.RegisterEvent.prototype = {}; @@ -24515,22 +24416,10 @@ return _this; }, _register_event$_build$0() { - var t1, t2, t3, t4, _this = this, + var _this = this, _s13_ = "RegisterEvent", - _s9_ = "eventData", - _s9_0 = "timestamp", _$result = _this._register_event$_$v; - if (_$result == null) { - t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_register_event$_$this()._register_event$_eventData, _s13_, _s9_, t1); - t3 = type$.int; - t4 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_register_event$_$this()._register_event$_timestamp, _s13_, _s9_0, t3); - _$result = new A._$RegisterEvent(t2, t4); - A.BuiltValueNullFieldError_checkNotNull(t2, _s13_, _s9_, t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s13_, _s9_0, t3); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.RegisterEvent); - return _this._register_event$_$v = _$result; + return _this._register_event$_$v = _$result == null ? new A._$RegisterEvent(A.BuiltValueNullFieldError_checkNotNull(_this.get$_register_event$_$this()._register_event$_eventData, _s13_, "eventData", type$.String), A.BuiltValueNullFieldError_checkNotNull(_this.get$_register_event$_$this()._register_event$_timestamp, _s13_, "timestamp", type$.int)) : _$result; } }; A.RunRequest.prototype = {}; @@ -24543,11 +24432,8 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var _$result; type$.Iterable_nullable_Object._as(serialized); - _$result = new A._$RunRequest(); - A.ArgumentError_checkNotNull(_$result, "other", type$.RunRequest); - return _$result; + return new A._$RunRequest(); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); @@ -24598,8 +24484,7 @@ return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { - var t1, value, _$result, t2, t3, t4, - _s8_ = "argsJson", + var t1, value, _$result, _s23_ = "ServiceExtensionRequest", result = new A.ServiceExtensionRequestBuilder(), iterator = J.get$iterator$ax(type$.Iterable_nullable_Object._as(serialized)); @@ -24633,15 +24518,8 @@ _$result = result._service_extension_request$_$v; if (_$result == null) { t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._service_extension_request$_id, _s23_, "id", t1); - t3 = A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._service_extension_request$_method, _s23_, "method", t1); - t4 = A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._argsJson, _s23_, _s8_, t1); - _$result = new A._$ServiceExtensionRequest(t2, t3, t4); - A.BuiltValueNullFieldError_checkNotNull(t2, _s23_, "id", t1); - A.BuiltValueNullFieldError_checkNotNull(t3, _s23_, "method", t1); - A.BuiltValueNullFieldError_checkNotNull(t4, _s23_, _s8_, t1); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.ServiceExtensionRequest); + _$result = new A._$ServiceExtensionRequest(A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._service_extension_request$_id, _s23_, "id", t1), A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._service_extension_request$_method, _s23_, "method", t1), A.BuiltValueNullFieldError_checkNotNull(result.get$_service_extension_request$_$this()._argsJson, _s23_, "argsJson", t1)); + } return result._service_extension_request$_$v = _$result; }, deserialize$2(serializers, serialized) { @@ -24833,21 +24711,10 @@ return _this; }, _service_extension_response$_build$0() { - var t1, t2, t3, t4, t5, _this = this, + var _this = this, _s24_ = "ServiceExtensionResponse", _$result = _this._service_extension_response$_$v; - if (_$result == null) { - t1 = type$.String; - t2 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_service_extension_response$_$this()._service_extension_response$_id, _s24_, "id", t1); - t3 = _this.get$_service_extension_response$_$this()._resultJson; - t4 = type$.bool; - t5 = A.BuiltValueNullFieldError_checkNotNull(_this.get$_service_extension_response$_$this()._service_extension_response$_success, _s24_, "success", t4); - _$result = new A._$ServiceExtensionResponse(t2, t3, t5, _this.get$_service_extension_response$_$this()._errorCode, _this.get$_service_extension_response$_$this()._service_extension_response$_errorMessage); - A.BuiltValueNullFieldError_checkNotNull(t2, _s24_, "id", t1); - A.BuiltValueNullFieldError_checkNotNull(t5, _s24_, "success", t4); - } - A.ArgumentError_checkNotNull(_$result, "other", type$.ServiceExtensionResponse); - return _this._service_extension_response$_$v = _$result; + return _this._service_extension_response$_$v = _$result == null ? new A._$ServiceExtensionResponse(A.BuiltValueNullFieldError_checkNotNull(_this.get$_service_extension_response$_$this()._service_extension_response$_id, _s24_, "id", type$.String), _this.get$_service_extension_response$_$this()._resultJson, A.BuiltValueNullFieldError_checkNotNull(_this.get$_service_extension_response$_$this()._service_extension_response$_success, _s24_, "success", type$.bool), _this.get$_service_extension_response$_$this()._errorCode, _this.get$_service_extension_response$_$this()._service_extension_response$_errorMessage) : _$result; } }; A.BatchedStreamController.prototype = { @@ -25134,6 +25001,7 @@ $isComparable: 1 }; A._StackState.prototype = {}; + A.RequestAbortedException.prototype = {}; A.BaseClient.prototype = { _sendUnstreamed$3(method, url, headers) { var $async$goto = 0, @@ -25206,7 +25074,7 @@ send$body$BrowserClient(request) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.StreamedResponse), - $async$returnValue, $async$handler = 2, $async$errorStack = [], $async$self = this, bodyBytes, t1, _0_0, contentLength, header, response, contentLengthHeader, contentLength0, headers, e, st, t2, t3, _this, t4, t5, t6, t7, result, exception, $async$exception; + $async$returnValue, $async$handler = 2, $async$errorStack = [], $async$next = [], $async$self = this, bodyBytes, _0_0, _0_2, _0_2_isSet, abortTrigger, t1, _1_0, contentLength, header, response, contentLengthHeader, contentLength0, headers, e, st, t4, t5, _this, t6, t7, t8, t9, result, exception, t2, abortController, t3, $async$exception; var $async$send$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$errorStack.push($async$result); @@ -25216,51 +25084,59 @@ switch ($async$goto) { case 0: // Function start + t2 = init.G; + abortController = A._asJSObject(new t2.AbortController()); + t3 = $async$self._openRequestAbortControllers; + B.JSArray_methods.add$1(t3, abortController); request.super$BaseRequest$finalize(); - t2 = type$._AsyncStreamController_List_int; - t3 = new A._AsyncStreamController(null, null, null, null, t2); - t3._add$1(request._bodyBytes); - t3._closeUnchecked$0(); + t4 = type$._AsyncStreamController_List_int; + t5 = new A._AsyncStreamController(null, null, null, null, t4); + t5._add$1(request._bodyBytes); + t5._closeUnchecked$0(); $async$goto = 3; - return A._asyncAwait(new A.ByteStream(new A._ControllerStream(t3, t2._eval$1("_ControllerStream<1>"))).toBytes$0(), $async$send$1); + return A._asyncAwait(new A.ByteStream(new A._ControllerStream(t5, t4._eval$1("_ControllerStream<1>"))).toBytes$0(), $async$send$1); case 3: // returning from await. bodyBytes = $async$result; $async$handler = 5; - t2 = request.url; - _this = t2.toString$0(0); - t3 = !J.get$isEmpty$asx(bodyBytes) ? bodyBytes : null; - t4 = $async$self.withCredentials ? "include" : "same-origin"; - t5 = type$.String; - t1 = A.LinkedHashMap_LinkedHashMap$_empty(t5, type$.Object); - _0_0 = request._bodyBytes.length; + _0_0 = request; + _0_2 = null; + _0_2_isSet = false; + abortTrigger = null; + t4 = request.url; + _this = t4.toString$0(0); + t5 = !J.get$isEmpty$asx(bodyBytes) ? bodyBytes : null; + t6 = $async$self.withCredentials ? "include" : "same-origin"; + t7 = type$.String; + t1 = A.LinkedHashMap_LinkedHashMap$_empty(t7, type$.Object); + _1_0 = request._bodyBytes.length; contentLength = null; - if (_0_0 != null) { - contentLength = _0_0; + if (_1_0 != null) { + contentLength = _1_0; J.$indexSet$ax(t1, "content-length", contentLength); } - for (t6 = request.headers, t6 = new A.LinkedHashMapEntriesIterable(t6, A._instanceType(t6)._eval$1("LinkedHashMapEntriesIterable<1,2>")).get$iterator(0); t6.moveNext$0();) { - t7 = t6.__js_helper$_current; - t7.toString; - header = t7; + for (t8 = request.headers, t8 = new A.LinkedHashMapEntriesIterable(t8, A._instanceType(t8)._eval$1("LinkedHashMapEntriesIterable<1,2>")).get$iterator(0); t8.moveNext$0();) { + t9 = t8.__js_helper$_current; + t9.toString; + header = t9; J.$indexSet$ax(t1, header.key, header.value); } t1 = A.jsify(t1); t1.toString; A._asJSObject(t1); - t6 = A._asJSObject($async$self._abortController.signal); + t8 = A._asJSObject(abortController.signal); $async$goto = 8; - return A._asyncAwait(A.promiseToFuture(A._asJSObject(init.G.fetch(_this, {method: request.method, headers: t1, body: t3, credentials: t4, redirect: "follow", signal: t6})), type$.JSObject), $async$send$1); + return A._asyncAwait(A.promiseToFuture(A._asJSObject(t2.fetch(_this, {method: request.method, headers: t1, body: t5, credentials: t6, redirect: "follow", signal: t8})), type$.JSObject), $async$send$1); case 8: // returning from await. response = $async$result; contentLengthHeader = A._asStringQ(A._asJSObject(response.headers).get("content-length")); contentLength0 = contentLengthHeader != null ? A.Primitives_parseInt(contentLengthHeader, null) : null; if (contentLength0 == null && contentLengthHeader != null) { - t1 = A.ClientException$("Invalid content-length header [" + contentLengthHeader + "].", t2); + t1 = A.ClientException$("Invalid content-length header [" + contentLengthHeader + "].", t4); throw A.wrapException(t1); } - headers = A.LinkedHashMap_LinkedHashMap$_empty(t5, t5); + headers = A.LinkedHashMap_LinkedHashMap$_empty(t7, t7); t1 = A._asJSObject(response.headers); t2 = new A.BrowserClient_send_closure(headers); if (typeof t2 == "function") @@ -25274,19 +25150,20 @@ t1.forEach(result); t1 = A._readBody(request, response); t2 = A._asInt(response.status); - t3 = headers; - t4 = contentLength0; + t4 = headers; + t5 = contentLength0; A.Uri_parse(A._asString(response.url)); - t5 = A._asString(response.statusText); - t1 = new A.StreamedResponseV2(A.toByteStream(t1), request, t2, t5, t4, t3, false, true); - t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(t2, t4, t3, false, true, t5, request); + t6 = A._asString(response.statusText); + t1 = new A.StreamedResponseV2(A.toByteStream(t1), request, t2, t6, t5, t4, false, true); + t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(t2, t5, t4, false, true, t6, request); $async$returnValue = t1; - // goto return - $async$goto = 1; + $async$next = [1]; + // goto finally + $async$goto = 6; break; - $async$handler = 2; - // goto after finally - $async$goto = 7; + $async$next.push(7); + // goto finally + $async$goto = 6; break; case 5: // catch @@ -25295,13 +25172,19 @@ e = A.unwrapException($async$exception); st = A.getTraceFromException($async$exception); A._rethrowAsClientException(e, st, request); - // goto after finally - $async$goto = 7; + $async$next.push(7); + // goto finally + $async$goto = 6; break; case 4: // uncaught - // goto rethrow - $async$goto = 2; + $async$next = [2]; + case 6: + // finally + $async$handler = 2; + B.JSArray_methods.remove$1(t3, abortController); + // goto the next finally handler + $async$goto = $async$next.pop(); break; case 7: // after finally @@ -29021,7 +28904,7 @@ _getDigests$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_String), - $async$returnValue, t1, response; + $async$returnValue, response, t1; var $async$_getDigests$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); @@ -29029,9 +28912,8 @@ switch ($async$goto) { case 0: // Function start - t1 = init.G; $async$goto = 3; - return A._asyncAwait(new A.BrowserClient(A._asJSObject(new t1.AbortController()))._sendUnstreamed$3("GET", A.Uri_parse(A._asString(type$.JavaScriptObject._as(t1.$requireLoader).digestsPath)), null), $async$_getDigests$0); + return A._asyncAwait(new A.BrowserClient(A._setArrayType([], type$.JSArray_JSObject))._sendUnstreamed$3("GET", A.Uri_parse(A._asString(type$.JavaScriptObject._as(init.G.$requireLoader).digestsPath)), null), $async$_getDigests$0); case 3: // returning from await. response = $async$result; @@ -29460,7 +29342,7 @@ _inherit = hunkHelpers.inherit, _inheritMany = hunkHelpers.inheritMany; _inherit(A.Object, null); - _inheritMany(A.Object, [A.JS_CONST, J.Interceptor, A.SafeToStringHook, J.ArrayIterator, A.Iterable, A.CastIterator, A.Closure, A.MapBase, A.Error, A.ListBase, A.SentinelValue, A.ListIterator, A.MappedIterator, A.WhereIterator, A.ExpandIterator, A.TakeIterator, A.SkipIterator, A.EmptyIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.ConstantMap, A._KeysOrValuesOrElementsIterator, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.LinkedHashMapValueIterator, A.LinkedHashMapEntryIterator, A._Record, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A._UnmodifiableNativeByteBufferView, A.Rti, A._FunctionParameters, A._Type, A._TimerImpl, A._AsyncAwaitCompleter, A._AsyncStarStreamController, A._IterationMarker, A.AsyncError, A.TimeoutException, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.Stream, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._BufferingStreamSubscription, A._StreamSinkWrapper, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._DoneStreamSubscription, A._StreamIterator, A._ZoneFunction, A._ZoneSpecification, A._ZoneDelegate, A._Zone, A._HashMapKeyIterator, A.SetBase, A._HashSetIterator, A._LinkedHashSetCell, A._LinkedHashSetIterator, A._UnmodifiableMapMixin, A.MapView, A._ListQueueIterator, A._SplayTreeNode, A._SplayTree, A._SplayTreeIterator, A.Codec, A.Converter, A._Base64Encoder, A._Base64Decoder, A.ByteConversionSink, A._JsonStringifier, A._Utf8Encoder, A._Utf8Decoder, A._BigIntImpl, A.DateTime, A.Duration, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.IntegerDivisionByZeroException, A.MapEntry, A.Null, A._StringStackTrace, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.NullRejectionException, A._JSRandom, A._JSSecureRandom, A.AsyncMemoizer, A.DelegatingStreamSink, A.ErrorResult, A.ValueResult, A.StreamQueue, A._NextRequest, A._HasNextRequest, A.BuiltList, A.ListBuilder, A.BuiltListMultimap, A.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, A.BuiltSet, A.SetBuilder, A.BuiltSetMultimap, A.SetMultimapBuilder, A.EnumClass, A.IndentingBuiltValueToStringHelper, A.JsonObject, A.FullType, A.BigIntSerializer, A.BoolSerializer, A.BuiltJsonSerializers, A.BuiltJsonSerializersBuilder, A.BuiltListMultimapSerializer, A.BuiltListSerializer, A.BuiltMapSerializer, A.BuiltSetMultimapSerializer, A.BuiltSetSerializer, A.DateTimeSerializer, A.DoubleSerializer, A.DurationSerializer, A.Int32Serializer, A.Int64Serializer, A.IntSerializer, A.JsonObjectSerializer, A.ListSerializer, A.MapSerializer, A.NullSerializer, A.NumSerializer, A.RegExpSerializer, A.SetSerializer, A.StringSerializer, A.Uint8ListSerializer, A.UriSerializer, A.CanonicalizedMap, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._UnorderedEquality, A._MapEntry, A.MapEquality, A.DeepCollectionEquality, A._QueueList_Object_ListMixin, A.BuildResult, A._$BuildStatusSerializer, A._$BuildResultSerializer, A.BuildResultBuilder, A.ConnectRequest, A._$ConnectRequestSerializer, A.ConnectRequestBuilder, A.DebugEvent, A.BatchedDebugEvents, A._$DebugEventSerializer, A._$BatchedDebugEventsSerializer, A.DebugEventBuilder, A.BatchedDebugEventsBuilder, A.DebugInfo, A._$DebugInfoSerializer, A.DebugInfoBuilder, A.DevToolsRequest, A.DevToolsResponse, A._$DevToolsRequestSerializer, A._$DevToolsResponseSerializer, A.DevToolsRequestBuilder, A.DevToolsResponseBuilder, A.ErrorResponse, A._$ErrorResponseSerializer, A.ErrorResponseBuilder, A.ExtensionRequest, A.ExtensionResponse, A.ExtensionEvent, A.BatchedEvents, A._$ExtensionRequestSerializer, A._$ExtensionResponseSerializer, A._$ExtensionEventSerializer, A._$BatchedEventsSerializer, A.ExtensionRequestBuilder, A.ExtensionResponseBuilder, A.ExtensionEventBuilder, A.BatchedEventsBuilder, A.HotReloadRequest, A._$HotReloadRequestSerializer, A.HotReloadRequestBuilder, A.HotReloadResponse, A._$HotReloadResponseSerializer, A.HotReloadResponseBuilder, A.HotRestartRequest, A._$HotRestartRequestSerializer, A.HotRestartRequestBuilder, A.HotRestartResponse, A._$HotRestartResponseSerializer, A.HotRestartResponseBuilder, A.IsolateExit, A.IsolateStart, A._$IsolateExitSerializer, A._$IsolateStartSerializer, A.IsolateExitBuilder, A.IsolateStartBuilder, A.RegisterEvent, A._$RegisterEventSerializer, A.RegisterEventBuilder, A.RunRequest, A._$RunRequestSerializer, A.ServiceExtensionRequest, A._$ServiceExtensionRequestSerializer, A.ServiceExtensionRequestBuilder, A.ServiceExtensionResponse, A._$ServiceExtensionResponseSerializer, A.ServiceExtensionResponseBuilder, A.BatchedStreamController, A.SocketClient, A.Int32, A.Int64, A._StackState, A.BaseClient, A.BaseRequest, A.BaseResponse, A.ClientException, A.MediaType, A.Level, A.LogRecord, A.Logger, A.Context, A.Style, A.ParsedPath, A.PathException, A.Pool, A.PoolResource, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.SourceSpanException, A.StreamChannelMixin, A._GuaranteeSink, A.StreamChannelController, A.StringScanner, A.RNG, A.UuidV1, A.EventStreamProvider, A._EventStreamSubscription, A.BrowserWebSocket, A.WebSocketEvent, A.WebSocketException, A.WebSocketChannelException, A.DdcLibraryBundleRestarter, A.DdcRestarter, A.ReloadingManager, A.HotReloadFailedException, A.RequireRestarter]); + _inheritMany(A.Object, [A.JS_CONST, J.Interceptor, A.SafeToStringHook, J.ArrayIterator, A.Iterable, A.CastIterator, A.Closure, A.MapBase, A.Error, A.ListBase, A.SentinelValue, A.ListIterator, A.MappedIterator, A.WhereIterator, A.ExpandIterator, A.TakeIterator, A.SkipIterator, A.EmptyIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.ConstantMap, A._KeysOrValuesOrElementsIterator, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.LinkedHashMapValueIterator, A.LinkedHashMapEntryIterator, A._Record, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A._UnmodifiableNativeByteBufferView, A.Rti, A._FunctionParameters, A._Type, A._TimerImpl, A._AsyncAwaitCompleter, A._AsyncStarStreamController, A._IterationMarker, A.AsyncError, A.TimeoutException, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.Stream, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._BufferingStreamSubscription, A._StreamSinkWrapper, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._DoneStreamSubscription, A._StreamIterator, A._ZoneFunction, A._ZoneSpecification, A._ZoneDelegate, A._Zone, A._HashMapKeyIterator, A.SetBase, A._HashSetIterator, A._LinkedHashSetCell, A._LinkedHashSetIterator, A._UnmodifiableMapMixin, A.MapView, A._ListQueueIterator, A._SplayTreeNode, A._SplayTree, A._SplayTreeIterator, A.Codec, A.Converter, A._Base64Encoder, A._Base64Decoder, A.ByteConversionSink, A._JsonStringifier, A._Utf8Encoder, A._Utf8Decoder, A._BigIntImpl, A.DateTime, A.Duration, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.IntegerDivisionByZeroException, A.MapEntry, A.Null, A._StringStackTrace, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.NullRejectionException, A._JSRandom, A._JSSecureRandom, A.AsyncMemoizer, A.DelegatingStreamSink, A.ErrorResult, A.ValueResult, A.StreamQueue, A._NextRequest, A._HasNextRequest, A.BuiltList, A.ListBuilder, A.BuiltListMultimap, A.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, A.BuiltSet, A.SetBuilder, A.BuiltSetMultimap, A.SetMultimapBuilder, A.EnumClass, A.IndentingBuiltValueToStringHelper, A.JsonObject, A.FullType, A.BigIntSerializer, A.BoolSerializer, A.BuiltJsonSerializers, A.BuiltJsonSerializersBuilder, A.BuiltListMultimapSerializer, A.BuiltListSerializer, A.BuiltMapSerializer, A.BuiltSetMultimapSerializer, A.BuiltSetSerializer, A.DateTimeSerializer, A.DoubleSerializer, A.DurationSerializer, A.Int32Serializer, A.Int64Serializer, A.IntSerializer, A.JsonObjectSerializer, A.ListSerializer, A.MapSerializer, A.NullSerializer, A.NumSerializer, A.RegExpSerializer, A.SetSerializer, A.StringSerializer, A.Uint8ListSerializer, A.UriSerializer, A.CanonicalizedMap, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._UnorderedEquality, A._MapEntry, A.MapEquality, A.DeepCollectionEquality, A._QueueList_Object_ListMixin, A.BuildResult, A._$BuildStatusSerializer, A._$BuildResultSerializer, A.BuildResultBuilder, A.ConnectRequest, A._$ConnectRequestSerializer, A.ConnectRequestBuilder, A.DebugEvent, A.BatchedDebugEvents, A._$DebugEventSerializer, A._$BatchedDebugEventsSerializer, A.DebugEventBuilder, A.BatchedDebugEventsBuilder, A.DebugInfo, A._$DebugInfoSerializer, A.DebugInfoBuilder, A.DevToolsRequest, A.DevToolsResponse, A._$DevToolsRequestSerializer, A._$DevToolsResponseSerializer, A.DevToolsRequestBuilder, A.DevToolsResponseBuilder, A.ErrorResponse, A._$ErrorResponseSerializer, A.ErrorResponseBuilder, A.ExtensionRequest, A.ExtensionResponse, A.ExtensionEvent, A.BatchedEvents, A._$ExtensionRequestSerializer, A._$ExtensionResponseSerializer, A._$ExtensionEventSerializer, A._$BatchedEventsSerializer, A.ExtensionRequestBuilder, A.ExtensionResponseBuilder, A.ExtensionEventBuilder, A.BatchedEventsBuilder, A.HotReloadRequest, A._$HotReloadRequestSerializer, A.HotReloadRequestBuilder, A.HotReloadResponse, A._$HotReloadResponseSerializer, A.HotReloadResponseBuilder, A.HotRestartRequest, A._$HotRestartRequestSerializer, A.HotRestartRequestBuilder, A.HotRestartResponse, A._$HotRestartResponseSerializer, A.HotRestartResponseBuilder, A.IsolateExit, A.IsolateStart, A._$IsolateExitSerializer, A._$IsolateStartSerializer, A.IsolateExitBuilder, A.IsolateStartBuilder, A.RegisterEvent, A._$RegisterEventSerializer, A.RegisterEventBuilder, A.RunRequest, A._$RunRequestSerializer, A.ServiceExtensionRequest, A._$ServiceExtensionRequestSerializer, A.ServiceExtensionRequestBuilder, A.ServiceExtensionResponse, A._$ServiceExtensionResponseSerializer, A.ServiceExtensionResponseBuilder, A.BatchedStreamController, A.SocketClient, A.Int32, A.Int64, A._StackState, A.ClientException, A.BaseClient, A.BaseRequest, A.BaseResponse, A.MediaType, A.Level, A.LogRecord, A.Logger, A.Context, A.Style, A.ParsedPath, A.PathException, A.Pool, A.PoolResource, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.SourceSpanException, A.StreamChannelMixin, A._GuaranteeSink, A.StreamChannelController, A.StringScanner, A.RNG, A.UuidV1, A.EventStreamProvider, A._EventStreamSubscription, A.BrowserWebSocket, A.WebSocketEvent, A.WebSocketException, A.WebSocketChannelException, A.DdcLibraryBundleRestarter, A.DdcRestarter, A.ReloadingManager, A.HotReloadFailedException, A.RequireRestarter]); _inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JavaScriptBigInt, J.JavaScriptSymbol, J.JSNumber, J.JSString]); _inheritMany(J.JavaScriptObject, [J.LegacyJavaScriptObject, J.JSArray, A.NativeByteBuffer, A.NativeTypedData]); _inheritMany(J.LegacyJavaScriptObject, [J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction]); @@ -29561,6 +29443,7 @@ _inherit(A._$ServiceExtensionRequest, A.ServiceExtensionRequest); _inherit(A._$ServiceExtensionResponse, A.ServiceExtensionResponse); _inheritMany(A.SocketClient, [A.SseSocketClient, A.WebSocketClient]); + _inherit(A.RequestAbortedException, A.ClientException); _inherit(A.BrowserClient, A.BaseClient); _inherit(A.ByteStream, A.StreamView); _inherit(A.Request, A.BaseRequest); @@ -29603,7 +29486,7 @@ arrayRti: Symbol("$ti"), rttc: {} }; - A._Universe_addRules(init.typeUniverse, JSON.parse('{"JavaScriptFunction":"LegacyJavaScriptObject","PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","NativeSharedArrayBuffer":"NativeByteBuffer","JavaScriptObject":{"JSObject":[]},"JSArray":{"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSBool":{"bool":[],"TrustedGetRuntimeType":[]},"JSNull":{"Null":[],"TrustedGetRuntimeType":[]},"LegacyJavaScriptObject":{"JavaScriptObject":[],"JSObject":[]},"JSArraySafeToStringHook":{"SafeToStringHook":[]},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"ArrayIterator":{"Iterator":["1"]},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"],"TrustedGetRuntimeType":[]},"_CastIterableBase":{"Iterable":["2"]},"CastIterator":{"Iterator":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","Iterable.E":"2"},"CastMap":{"MapBase":["3","4"],"Map":["3","4"],"MapBase.K":"3","MapBase.V":"4"},"LateError":{"Error":[]},"CodeUnits":{"ListBase":["int"],"UnmodifiableListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int","UnmodifiableListMixin.E":"int"},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"ListIterator":{"Iterator":["1"]},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedIterator":{"Iterator":["2"]},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListIterable.E":"2","Iterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"WhereIterator":{"Iterator":["1"]},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"ExpandIterator":{"Iterator":["2"]},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"TakeIterator":{"Iterator":["1"]},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterator":{"Iterator":["1"]},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"EmptyIterator":{"Iterator":["1"]},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterator":{"Iterator":["1"]},"UnmodifiableListBase":{"ListBase":["1"],"UnmodifiableListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_KeysOrValues":{"Iterable":["1"],"Iterable.E":"1"},"_KeysOrValuesOrElementsIterator":{"Iterator":["1"]},"Instantiation":{"Closure":[],"Function":[]},"Instantiation1":{"Closure":[],"Function":[]},"NullError":{"TypeError":[],"Error":[]},"JsNoSuchMethodError":{"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Closure":[],"Function":[]},"Closure2Args":{"Closure":[],"Function":[]},"TearOffClosure":{"Closure":[],"Function":[]},"StaticClosure":{"Closure":[],"Function":[]},"BoundClosure":{"Closure":[],"Function":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"LinkedHashMapKeysIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"LinkedHashMapKeyIterator":{"Iterator":["1"]},"LinkedHashMapValuesIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"LinkedHashMapValueIterator":{"Iterator":["1"]},"LinkedHashMapEntriesIterable":{"EfficientLengthIterable":["MapEntry<1,2>"],"Iterable":["MapEntry<1,2>"],"Iterable.E":"MapEntry<1,2>"},"LinkedHashMapEntryIterator":{"Iterator":["MapEntry<1,2>"]},"JsIdentityLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"_AllMatchesIterator":{"Iterator":["RegExpMatch"]},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"_StringAllMatchesIterator":{"Iterator":["Match"]},"NativeByteBuffer":{"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeArrayBuffer":{"NativeByteBuffer":[],"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeTypedData":{"JavaScriptObject":[],"JSObject":[]},"_UnmodifiableNativeByteBufferView":{"ByteBuffer":[]},"NativeByteData":{"JavaScriptObject":[],"ByteData":[],"JSObject":[],"TrustedGetRuntimeType":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"JavaScriptObject":[],"JSObject":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"]},"NativeTypedArrayOfInt":{"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"]},"NativeFloat32List":{"Float32List":[],"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double","FixedLengthListMixin.E":"double"},"NativeFloat64List":{"Float64List":[],"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double","FixedLengthListMixin.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"Int16List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"Int32List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"Int8List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"Uint16List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"Uint32List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"Uint8ClampedList":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"Uint8List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"AsyncError":{"Error":[]},"_Future":{"Future":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"_SyncCompleter":{"_Completer":["1"],"Completer":["1"]},"StreamView":{"Stream":["1"]},"_StreamController":{"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_SyncStreamController":{"_SyncStreamControllerDispatch":["1"],"_StreamController":["1"],"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_EventSink":["1"],"_EventDispatch":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamSinkWrapper":{"StreamSink":["1"]},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_BufferingStreamSubscription":{"StreamSubscription":["1"],"_EventSink":["1"],"_EventDispatch":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamImpl":{"Stream":["1"]},"_DelayedData":{"_DelayedEvent":["1"]},"_DelayedError":{"_DelayedEvent":["@"]},"_DelayedDone":{"_DelayedEvent":["@"]},"_DoneStreamSubscription":{"StreamSubscription":["1"]},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_EventSink":["2"],"_EventDispatch":["2"],"_BufferingStreamSubscription.T":"2"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2"},"_ZoneSpecification":{"ZoneSpecification":[]},"_ZoneDelegate":{"ZoneDelegate":[]},"_Zone":{"Zone":[]},"_CustomZone":{"_Zone":[],"Zone":[]},"_RootZone":{"_Zone":[],"Zone":[]},"_SplayTreeSetNode":{"_SplayTreeNode":["1","_SplayTreeSetNode<1>"],"_SplayTreeNode.K":"1","_SplayTreeNode.1":"_SplayTreeSetNode<1>"},"_HashMap":{"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_CustomHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_HashMapKeyIterator":{"Iterator":["1"]},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_HashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_HashSetIterator":{"Iterator":["1"]},"_LinkedHashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedHashSetIterator":{"Iterator":["1"]},"UnmodifiableListView":{"ListBase":["1"],"UnmodifiableListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1","UnmodifiableListMixin.E":"1"},"ListBase":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"Map":["1","2"]},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":["1","2"],"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"ListQueue":{"Queue":["1"],"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"_ListQueueIterator":{"Iterator":["1"]},"SetBase":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SetBase":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SplayTreeIterator":{"Iterator":["3"]},"_SplayTreeKeyIterator":{"_SplayTreeIterator":["1","2","1"],"Iterator":["1"],"_SplayTreeIterator.K":"1","_SplayTreeIterator.T":"1","_SplayTreeIterator.1":"2"},"SplayTreeSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"_SplayTree":["1","_SplayTreeSetNode<1>"],"Iterable":["1"],"Iterable.E":"1","_SplayTree.1":"_SplayTreeSetNode<1>","_SplayTree.K":"1"},"Encoding":{"Codec":["String","List"]},"_JsonMap":{"MapBase":["String","@"],"Map":["String","@"],"MapBase.K":"String","MapBase.V":"@"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"ListIterable.E":"String","Iterable.E":"String"},"AsciiCodec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"_UnicodeSubsetEncoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"AsciiEncoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"_UnicodeSubsetDecoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"AsciiDecoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Base64Codec":{"Codec":["List","String"],"Codec.S":"List"},"Base64Encoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Base64Decoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Converter":{"StreamTransformer":["1","2"]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonCodec":{"Codec":["Object?","String"],"Codec.S":"Object?"},"JsonEncoder":{"Converter":["Object?","String"],"StreamTransformer":["Object?","String"]},"JsonDecoder":{"Converter":["String","Object?"],"StreamTransformer":["String","Object?"]},"Latin1Codec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"Latin1Encoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Latin1Decoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Utf8Codec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"Utf8Encoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Utf8Decoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"BigInt":{"Comparable":["BigInt"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExp":{"Pattern":[]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"],"Pattern":[]},"_BigIntImpl":{"BigInt":[],"Comparable":["BigInt"]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[],"Error":[]},"_StringStackTrace":{"StackTrace":[]},"StringBuffer":{"StringSink":[]},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"NullRejectionException":{"Exception":[]},"DelegatingStreamSink":{"StreamSink":["1"]},"ErrorResult":{"Result":["0&"]},"ValueResult":{"Result":["1"]},"_NextRequest":{"_EventRequest":["1"]},"_HasNextRequest":{"_EventRequest":["1"]},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltSetMultimap":{"BuiltSetMultimap":["1","2"]},"BuiltValueNullFieldError":{"Error":[]},"BuiltValueNestedFieldError":{"Error":[]},"BoolJsonObject":{"JsonObject":[]},"ListJsonObject":{"JsonObject":[]},"MapJsonObject":{"JsonObject":[]},"NumJsonObject":{"JsonObject":[]},"StringJsonObject":{"JsonObject":[]},"DeserializationError":{"Error":[]},"BigIntSerializer":{"PrimitiveSerializer":["BigInt"],"Serializer":["BigInt"]},"BoolSerializer":{"PrimitiveSerializer":["bool"],"Serializer":["bool"]},"BuiltJsonSerializers":{"Serializers":[]},"BuiltListMultimapSerializer":{"StructuredSerializer":["BuiltListMultimap<@,@>"],"Serializer":["BuiltListMultimap<@,@>"]},"BuiltListSerializer":{"StructuredSerializer":["BuiltList<@>"],"Serializer":["BuiltList<@>"]},"BuiltMapSerializer":{"StructuredSerializer":["BuiltMap<@,@>"],"Serializer":["BuiltMap<@,@>"]},"BuiltSetMultimapSerializer":{"StructuredSerializer":["BuiltSetMultimap<@,@>"],"Serializer":["BuiltSetMultimap<@,@>"]},"BuiltSetSerializer":{"StructuredSerializer":["BuiltSet<@>"],"Serializer":["BuiltSet<@>"]},"DateTimeSerializer":{"PrimitiveSerializer":["DateTime"],"Serializer":["DateTime"]},"DoubleSerializer":{"PrimitiveSerializer":["double"],"Serializer":["double"]},"DurationSerializer":{"PrimitiveSerializer":["Duration"],"Serializer":["Duration"]},"Int32Serializer":{"PrimitiveSerializer":["Int32"],"Serializer":["Int32"]},"Int64Serializer":{"PrimitiveSerializer":["Int64"],"Serializer":["Int64"]},"IntSerializer":{"PrimitiveSerializer":["int"],"Serializer":["int"]},"JsonObjectSerializer":{"PrimitiveSerializer":["JsonObject"],"Serializer":["JsonObject"]},"ListSerializer":{"StructuredSerializer":["List<@>"],"Serializer":["List<@>"]},"MapSerializer":{"StructuredSerializer":["Map<@,@>"],"Serializer":["Map<@,@>"]},"NullSerializer":{"PrimitiveSerializer":["Null"],"Serializer":["Null"]},"NumSerializer":{"PrimitiveSerializer":["num"],"Serializer":["num"]},"RegExpSerializer":{"PrimitiveSerializer":["RegExp"],"Serializer":["RegExp"]},"SetSerializer":{"StructuredSerializer":["Set<@>"],"Serializer":["Set<@>"]},"StringSerializer":{"PrimitiveSerializer":["String"],"Serializer":["String"]},"Uint8ListSerializer":{"PrimitiveSerializer":["Uint8List"],"Serializer":["Uint8List"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"CanonicalizedMap":{"Map":["2","3"]},"DefaultEquality":{"Equality":["1"]},"IterableEquality":{"Equality":["Iterable<1>"]},"ListEquality":{"Equality":["List<1>"]},"_UnorderedEquality":{"Equality":["2"]},"SetEquality":{"_UnorderedEquality":["1","Set<1>"],"Equality":["Set<1>"],"_UnorderedEquality.E":"1","_UnorderedEquality.T":"Set<1>"},"MapEquality":{"Equality":["Map<1,2>"]},"DeepCollectionEquality":{"Equality":["@"]},"QueueList":{"ListBase":["1"],"List":["1"],"Queue":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","QueueList.E":"1","Iterable.E":"1"},"_CastQueueList":{"QueueList":["2"],"ListBase":["2"],"List":["2"],"Queue":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","QueueList.E":"2","Iterable.E":"2"},"_$BuildStatusSerializer":{"PrimitiveSerializer":["BuildStatus"],"Serializer":["BuildStatus"]},"_$BuildResultSerializer":{"StructuredSerializer":["BuildResult"],"Serializer":["BuildResult"]},"_$BuildResult":{"BuildResult":[]},"_$ConnectRequestSerializer":{"StructuredSerializer":["ConnectRequest"],"Serializer":["ConnectRequest"]},"_$ConnectRequest":{"ConnectRequest":[]},"_$DebugEventSerializer":{"StructuredSerializer":["DebugEvent"],"Serializer":["DebugEvent"]},"_$BatchedDebugEventsSerializer":{"StructuredSerializer":["BatchedDebugEvents"],"Serializer":["BatchedDebugEvents"]},"_$DebugEvent":{"DebugEvent":[]},"_$BatchedDebugEvents":{"BatchedDebugEvents":[]},"_$DebugInfoSerializer":{"StructuredSerializer":["DebugInfo"],"Serializer":["DebugInfo"]},"_$DebugInfo":{"DebugInfo":[]},"_$DevToolsRequestSerializer":{"StructuredSerializer":["DevToolsRequest"],"Serializer":["DevToolsRequest"]},"_$DevToolsResponseSerializer":{"StructuredSerializer":["DevToolsResponse"],"Serializer":["DevToolsResponse"]},"_$DevToolsRequest":{"DevToolsRequest":[]},"_$DevToolsResponse":{"DevToolsResponse":[]},"_$ErrorResponseSerializer":{"StructuredSerializer":["ErrorResponse"],"Serializer":["ErrorResponse"]},"_$ErrorResponse":{"ErrorResponse":[]},"_$ExtensionRequestSerializer":{"StructuredSerializer":["ExtensionRequest"],"Serializer":["ExtensionRequest"]},"_$ExtensionResponseSerializer":{"StructuredSerializer":["ExtensionResponse"],"Serializer":["ExtensionResponse"]},"_$ExtensionEventSerializer":{"StructuredSerializer":["ExtensionEvent"],"Serializer":["ExtensionEvent"]},"_$BatchedEventsSerializer":{"StructuredSerializer":["BatchedEvents"],"Serializer":["BatchedEvents"]},"_$ExtensionRequest":{"ExtensionRequest":[]},"_$ExtensionResponse":{"ExtensionResponse":[]},"_$ExtensionEvent":{"ExtensionEvent":[]},"_$BatchedEvents":{"BatchedEvents":[]},"_$HotReloadRequestSerializer":{"StructuredSerializer":["HotReloadRequest"],"Serializer":["HotReloadRequest"]},"_$HotReloadRequest":{"HotReloadRequest":[]},"_$HotReloadResponseSerializer":{"StructuredSerializer":["HotReloadResponse"],"Serializer":["HotReloadResponse"]},"_$HotReloadResponse":{"HotReloadResponse":[]},"_$HotRestartRequestSerializer":{"StructuredSerializer":["HotRestartRequest"],"Serializer":["HotRestartRequest"]},"_$HotRestartRequest":{"HotRestartRequest":[]},"_$HotRestartResponseSerializer":{"StructuredSerializer":["HotRestartResponse"],"Serializer":["HotRestartResponse"]},"_$HotRestartResponse":{"HotRestartResponse":[]},"_$IsolateExitSerializer":{"StructuredSerializer":["IsolateExit"],"Serializer":["IsolateExit"]},"_$IsolateStartSerializer":{"StructuredSerializer":["IsolateStart"],"Serializer":["IsolateStart"]},"_$IsolateExit":{"IsolateExit":[]},"_$IsolateStart":{"IsolateStart":[]},"_$RegisterEventSerializer":{"StructuredSerializer":["RegisterEvent"],"Serializer":["RegisterEvent"]},"_$RegisterEvent":{"RegisterEvent":[]},"_$RunRequestSerializer":{"StructuredSerializer":["RunRequest"],"Serializer":["RunRequest"]},"_$RunRequest":{"RunRequest":[]},"_$ServiceExtensionRequestSerializer":{"StructuredSerializer":["ServiceExtensionRequest"],"Serializer":["ServiceExtensionRequest"]},"_$ServiceExtensionRequest":{"ServiceExtensionRequest":[]},"_$ServiceExtensionResponseSerializer":{"StructuredSerializer":["ServiceExtensionResponse"],"Serializer":["ServiceExtensionResponse"]},"_$ServiceExtensionResponse":{"ServiceExtensionResponse":[]},"SseSocketClient":{"SocketClient":[]},"WebSocketClient":{"SocketClient":[]},"Int32":{"Comparable":["Object"]},"Int64":{"Comparable":["Object"]},"ByteStream":{"StreamView":["List"],"Stream":["List"],"Stream.T":"List","StreamView.T":"List"},"ClientException":{"Exception":[]},"Request":{"BaseRequest":[]},"StreamedResponseV2":{"StreamedResponse":[]},"CaseInsensitiveMap":{"CanonicalizedMap":["String","String","1"],"Map":["String","1"],"CanonicalizedMap.K":"String","CanonicalizedMap.V":"1","CanonicalizedMap.C":"String"},"Level":{"Comparable":["Level"]},"PathException":{"Exception":[]},"PosixStyle":{"InternalStyle":[]},"UrlStyle":{"InternalStyle":[]},"WindowsStyle":{"InternalStyle":[]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SseClient":{"StreamChannel":["String?"]},"GuaranteeChannel":{"StreamChannel":["1"]},"_GuaranteeSink":{"StreamSink":["1"]},"StreamChannelMixin":{"StreamChannel":["1"]},"StringScannerException":{"FormatException":[],"Exception":[]},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_EventStreamSubscription":{"StreamSubscription":["1"]},"BrowserWebSocket":{"WebSocket":[]},"TextDataReceived":{"WebSocketEvent":[]},"BinaryDataReceived":{"WebSocketEvent":[]},"CloseReceived":{"WebSocketEvent":[]},"WebSocketException":{"Exception":[]},"WebSocketConnectionClosed":{"Exception":[]},"AdapterWebSocketChannel":{"WebSocketChannel":[],"StreamChannel":["@"]},"_WebSocketSink":{"WebSocketSink":[],"DelegatingStreamSink":["@"],"StreamSink":["@"],"DelegatingStreamSink.T":"@"},"WebSocketChannelException":{"Exception":[]},"DdcLibraryBundleRestarter":{"Restarter":[]},"DdcRestarter":{"Restarter":[]},"RequireRestarter":{"Restarter":[]},"HotReloadFailedException":{"Exception":[]},"Int8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8ClampedList":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Int16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Int32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Float32List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"]},"Float64List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"]}}')); + A._Universe_addRules(init.typeUniverse, JSON.parse('{"JavaScriptFunction":"LegacyJavaScriptObject","PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","NativeSharedArrayBuffer":"NativeByteBuffer","JavaScriptObject":{"JSObject":[]},"JSArray":{"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSBool":{"bool":[],"TrustedGetRuntimeType":[]},"JSNull":{"Null":[],"TrustedGetRuntimeType":[]},"LegacyJavaScriptObject":{"JavaScriptObject":[],"JSObject":[]},"JSArraySafeToStringHook":{"SafeToStringHook":[]},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"ArrayIterator":{"Iterator":["1"]},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"],"TrustedGetRuntimeType":[]},"_CastIterableBase":{"Iterable":["2"]},"CastIterator":{"Iterator":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","Iterable.E":"2"},"CastMap":{"MapBase":["3","4"],"Map":["3","4"],"MapBase.K":"3","MapBase.V":"4"},"LateError":{"Error":[]},"CodeUnits":{"ListBase":["int"],"UnmodifiableListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int","UnmodifiableListMixin.E":"int"},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"ListIterator":{"Iterator":["1"]},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedIterator":{"Iterator":["2"]},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListIterable.E":"2","Iterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"WhereIterator":{"Iterator":["1"]},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"ExpandIterator":{"Iterator":["2"]},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"TakeIterator":{"Iterator":["1"]},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterator":{"Iterator":["1"]},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"EmptyIterator":{"Iterator":["1"]},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterator":{"Iterator":["1"]},"UnmodifiableListBase":{"ListBase":["1"],"UnmodifiableListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_KeysOrValues":{"Iterable":["1"],"Iterable.E":"1"},"_KeysOrValuesOrElementsIterator":{"Iterator":["1"]},"Instantiation":{"Closure":[],"Function":[]},"Instantiation1":{"Closure":[],"Function":[]},"NullError":{"TypeError":[],"Error":[]},"JsNoSuchMethodError":{"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Closure":[],"Function":[]},"Closure2Args":{"Closure":[],"Function":[]},"TearOffClosure":{"Closure":[],"Function":[]},"StaticClosure":{"Closure":[],"Function":[]},"BoundClosure":{"Closure":[],"Function":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"LinkedHashMapKeysIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"LinkedHashMapKeyIterator":{"Iterator":["1"]},"LinkedHashMapValuesIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"LinkedHashMapValueIterator":{"Iterator":["1"]},"LinkedHashMapEntriesIterable":{"EfficientLengthIterable":["MapEntry<1,2>"],"Iterable":["MapEntry<1,2>"],"Iterable.E":"MapEntry<1,2>"},"LinkedHashMapEntryIterator":{"Iterator":["MapEntry<1,2>"]},"JsIdentityLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"_AllMatchesIterator":{"Iterator":["RegExpMatch"]},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"_StringAllMatchesIterator":{"Iterator":["Match"]},"NativeByteBuffer":{"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeArrayBuffer":{"NativeByteBuffer":[],"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeTypedData":{"JavaScriptObject":[],"JSObject":[]},"_UnmodifiableNativeByteBufferView":{"ByteBuffer":[]},"NativeByteData":{"JavaScriptObject":[],"ByteData":[],"JSObject":[],"TrustedGetRuntimeType":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"JavaScriptObject":[],"JSObject":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"]},"NativeTypedArrayOfInt":{"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"]},"NativeFloat32List":{"Float32List":[],"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double","FixedLengthListMixin.E":"double"},"NativeFloat64List":{"Float64List":[],"ListBase":["double"],"NativeTypedArray":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"JSIndexable":["double"],"Iterable":["double"],"FixedLengthListMixin":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double","FixedLengthListMixin.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"Int16List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"Int32List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"Int8List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"Uint16List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"Uint32List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"Uint8ClampedList":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"Uint8List":[],"ListBase":["int"],"NativeTypedArray":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"JSIndexable":["int"],"Iterable":["int"],"FixedLengthListMixin":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int","FixedLengthListMixin.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"AsyncError":{"Error":[]},"_Future":{"Future":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"_SyncCompleter":{"_Completer":["1"],"Completer":["1"]},"StreamView":{"Stream":["1"]},"_StreamController":{"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_SyncStreamController":{"_SyncStreamControllerDispatch":["1"],"_StreamController":["1"],"StreamController":["1"],"StreamSink":["1"],"_StreamControllerLifecycle":["1"],"_EventSink":["1"],"_EventDispatch":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_EventSink":["1"],"_EventDispatch":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamSinkWrapper":{"StreamSink":["1"]},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_BufferingStreamSubscription":{"StreamSubscription":["1"],"_EventSink":["1"],"_EventDispatch":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamImpl":{"Stream":["1"]},"_DelayedData":{"_DelayedEvent":["1"]},"_DelayedError":{"_DelayedEvent":["@"]},"_DelayedDone":{"_DelayedEvent":["@"]},"_DoneStreamSubscription":{"StreamSubscription":["1"]},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_EventSink":["2"],"_EventDispatch":["2"],"_BufferingStreamSubscription.T":"2"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2"},"_ZoneSpecification":{"ZoneSpecification":[]},"_ZoneDelegate":{"ZoneDelegate":[]},"_Zone":{"Zone":[]},"_CustomZone":{"_Zone":[],"Zone":[]},"_RootZone":{"_Zone":[],"Zone":[]},"_SplayTreeSetNode":{"_SplayTreeNode":["1","_SplayTreeSetNode<1>"],"_SplayTreeNode.K":"1","_SplayTreeNode.1":"_SplayTreeSetNode<1>"},"_HashMap":{"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_CustomHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"HashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_HashMapKeyIterator":{"Iterator":["1"]},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapBase.K":"1","MapBase.V":"2"},"_HashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_HashSetIterator":{"Iterator":["1"]},"_LinkedHashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedHashSetIterator":{"Iterator":["1"]},"UnmodifiableListView":{"ListBase":["1"],"UnmodifiableListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1","UnmodifiableListMixin.E":"1"},"ListBase":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"Map":["1","2"]},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":["1","2"],"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"ListQueue":{"Queue":["1"],"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListIterable.E":"1","Iterable.E":"1"},"_ListQueueIterator":{"Iterator":["1"]},"SetBase":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SetBase":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SplayTreeIterator":{"Iterator":["3"]},"_SplayTreeKeyIterator":{"_SplayTreeIterator":["1","2","1"],"Iterator":["1"],"_SplayTreeIterator.K":"1","_SplayTreeIterator.T":"1","_SplayTreeIterator.1":"2"},"SplayTreeSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"_SplayTree":["1","_SplayTreeSetNode<1>"],"Iterable":["1"],"Iterable.E":"1","_SplayTree.1":"_SplayTreeSetNode<1>","_SplayTree.K":"1"},"Encoding":{"Codec":["String","List"]},"_JsonMap":{"MapBase":["String","@"],"Map":["String","@"],"MapBase.K":"String","MapBase.V":"@"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"ListIterable.E":"String","Iterable.E":"String"},"AsciiCodec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"_UnicodeSubsetEncoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"AsciiEncoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"_UnicodeSubsetDecoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"AsciiDecoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Base64Codec":{"Codec":["List","String"],"Codec.S":"List"},"Base64Encoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Base64Decoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Converter":{"StreamTransformer":["1","2"]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonCodec":{"Codec":["Object?","String"],"Codec.S":"Object?"},"JsonEncoder":{"Converter":["Object?","String"],"StreamTransformer":["Object?","String"]},"JsonDecoder":{"Converter":["String","Object?"],"StreamTransformer":["String","Object?"]},"Latin1Codec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"Latin1Encoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Latin1Decoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"Utf8Codec":{"Encoding":[],"Codec":["String","List"],"Codec.S":"String"},"Utf8Encoder":{"Converter":["String","List"],"StreamTransformer":["String","List"]},"Utf8Decoder":{"Converter":["List","String"],"StreamTransformer":["List","String"]},"BigInt":{"Comparable":["BigInt"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExp":{"Pattern":[]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"],"Pattern":[]},"_BigIntImpl":{"BigInt":[],"Comparable":["BigInt"]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[],"Error":[]},"_StringStackTrace":{"StackTrace":[]},"StringBuffer":{"StringSink":[]},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"NullRejectionException":{"Exception":[]},"DelegatingStreamSink":{"StreamSink":["1"]},"ErrorResult":{"Result":["0&"]},"ValueResult":{"Result":["1"]},"_NextRequest":{"_EventRequest":["1"]},"_HasNextRequest":{"_EventRequest":["1"]},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltSetMultimap":{"BuiltSetMultimap":["1","2"]},"BuiltValueNullFieldError":{"Error":[]},"BuiltValueNestedFieldError":{"Error":[]},"BoolJsonObject":{"JsonObject":[]},"ListJsonObject":{"JsonObject":[]},"MapJsonObject":{"JsonObject":[]},"NumJsonObject":{"JsonObject":[]},"StringJsonObject":{"JsonObject":[]},"DeserializationError":{"Error":[]},"BigIntSerializer":{"PrimitiveSerializer":["BigInt"],"Serializer":["BigInt"]},"BoolSerializer":{"PrimitiveSerializer":["bool"],"Serializer":["bool"]},"BuiltJsonSerializers":{"Serializers":[]},"BuiltListMultimapSerializer":{"StructuredSerializer":["BuiltListMultimap<@,@>"],"Serializer":["BuiltListMultimap<@,@>"]},"BuiltListSerializer":{"StructuredSerializer":["BuiltList<@>"],"Serializer":["BuiltList<@>"]},"BuiltMapSerializer":{"StructuredSerializer":["BuiltMap<@,@>"],"Serializer":["BuiltMap<@,@>"]},"BuiltSetMultimapSerializer":{"StructuredSerializer":["BuiltSetMultimap<@,@>"],"Serializer":["BuiltSetMultimap<@,@>"]},"BuiltSetSerializer":{"StructuredSerializer":["BuiltSet<@>"],"Serializer":["BuiltSet<@>"]},"DateTimeSerializer":{"PrimitiveSerializer":["DateTime"],"Serializer":["DateTime"]},"DoubleSerializer":{"PrimitiveSerializer":["double"],"Serializer":["double"]},"DurationSerializer":{"PrimitiveSerializer":["Duration"],"Serializer":["Duration"]},"Int32Serializer":{"PrimitiveSerializer":["Int32"],"Serializer":["Int32"]},"Int64Serializer":{"PrimitiveSerializer":["Int64"],"Serializer":["Int64"]},"IntSerializer":{"PrimitiveSerializer":["int"],"Serializer":["int"]},"JsonObjectSerializer":{"PrimitiveSerializer":["JsonObject"],"Serializer":["JsonObject"]},"ListSerializer":{"StructuredSerializer":["List<@>"],"Serializer":["List<@>"]},"MapSerializer":{"StructuredSerializer":["Map<@,@>"],"Serializer":["Map<@,@>"]},"NullSerializer":{"PrimitiveSerializer":["Null"],"Serializer":["Null"]},"NumSerializer":{"PrimitiveSerializer":["num"],"Serializer":["num"]},"RegExpSerializer":{"PrimitiveSerializer":["RegExp"],"Serializer":["RegExp"]},"SetSerializer":{"StructuredSerializer":["Set<@>"],"Serializer":["Set<@>"]},"StringSerializer":{"PrimitiveSerializer":["String"],"Serializer":["String"]},"Uint8ListSerializer":{"PrimitiveSerializer":["Uint8List"],"Serializer":["Uint8List"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"CanonicalizedMap":{"Map":["2","3"]},"DefaultEquality":{"Equality":["1"]},"IterableEquality":{"Equality":["Iterable<1>"]},"ListEquality":{"Equality":["List<1>"]},"_UnorderedEquality":{"Equality":["2"]},"SetEquality":{"_UnorderedEquality":["1","Set<1>"],"Equality":["Set<1>"],"_UnorderedEquality.E":"1","_UnorderedEquality.T":"Set<1>"},"MapEquality":{"Equality":["Map<1,2>"]},"DeepCollectionEquality":{"Equality":["@"]},"QueueList":{"ListBase":["1"],"List":["1"],"Queue":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","QueueList.E":"1","Iterable.E":"1"},"_CastQueueList":{"QueueList":["2"],"ListBase":["2"],"List":["2"],"Queue":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","QueueList.E":"2","Iterable.E":"2"},"_$BuildStatusSerializer":{"PrimitiveSerializer":["BuildStatus"],"Serializer":["BuildStatus"]},"_$BuildResultSerializer":{"StructuredSerializer":["BuildResult"],"Serializer":["BuildResult"]},"_$BuildResult":{"BuildResult":[]},"_$ConnectRequestSerializer":{"StructuredSerializer":["ConnectRequest"],"Serializer":["ConnectRequest"]},"_$ConnectRequest":{"ConnectRequest":[]},"_$DebugEventSerializer":{"StructuredSerializer":["DebugEvent"],"Serializer":["DebugEvent"]},"_$BatchedDebugEventsSerializer":{"StructuredSerializer":["BatchedDebugEvents"],"Serializer":["BatchedDebugEvents"]},"_$DebugEvent":{"DebugEvent":[]},"_$BatchedDebugEvents":{"BatchedDebugEvents":[]},"_$DebugInfoSerializer":{"StructuredSerializer":["DebugInfo"],"Serializer":["DebugInfo"]},"_$DebugInfo":{"DebugInfo":[]},"_$DevToolsRequestSerializer":{"StructuredSerializer":["DevToolsRequest"],"Serializer":["DevToolsRequest"]},"_$DevToolsResponseSerializer":{"StructuredSerializer":["DevToolsResponse"],"Serializer":["DevToolsResponse"]},"_$DevToolsRequest":{"DevToolsRequest":[]},"_$DevToolsResponse":{"DevToolsResponse":[]},"_$ErrorResponseSerializer":{"StructuredSerializer":["ErrorResponse"],"Serializer":["ErrorResponse"]},"_$ErrorResponse":{"ErrorResponse":[]},"_$ExtensionRequestSerializer":{"StructuredSerializer":["ExtensionRequest"],"Serializer":["ExtensionRequest"]},"_$ExtensionResponseSerializer":{"StructuredSerializer":["ExtensionResponse"],"Serializer":["ExtensionResponse"]},"_$ExtensionEventSerializer":{"StructuredSerializer":["ExtensionEvent"],"Serializer":["ExtensionEvent"]},"_$BatchedEventsSerializer":{"StructuredSerializer":["BatchedEvents"],"Serializer":["BatchedEvents"]},"_$ExtensionRequest":{"ExtensionRequest":[]},"_$ExtensionResponse":{"ExtensionResponse":[]},"_$ExtensionEvent":{"ExtensionEvent":[]},"_$BatchedEvents":{"BatchedEvents":[]},"_$HotReloadRequestSerializer":{"StructuredSerializer":["HotReloadRequest"],"Serializer":["HotReloadRequest"]},"_$HotReloadRequest":{"HotReloadRequest":[]},"_$HotReloadResponseSerializer":{"StructuredSerializer":["HotReloadResponse"],"Serializer":["HotReloadResponse"]},"_$HotReloadResponse":{"HotReloadResponse":[]},"_$HotRestartRequestSerializer":{"StructuredSerializer":["HotRestartRequest"],"Serializer":["HotRestartRequest"]},"_$HotRestartRequest":{"HotRestartRequest":[]},"_$HotRestartResponseSerializer":{"StructuredSerializer":["HotRestartResponse"],"Serializer":["HotRestartResponse"]},"_$HotRestartResponse":{"HotRestartResponse":[]},"_$IsolateExitSerializer":{"StructuredSerializer":["IsolateExit"],"Serializer":["IsolateExit"]},"_$IsolateStartSerializer":{"StructuredSerializer":["IsolateStart"],"Serializer":["IsolateStart"]},"_$IsolateExit":{"IsolateExit":[]},"_$IsolateStart":{"IsolateStart":[]},"_$RegisterEventSerializer":{"StructuredSerializer":["RegisterEvent"],"Serializer":["RegisterEvent"]},"_$RegisterEvent":{"RegisterEvent":[]},"_$RunRequestSerializer":{"StructuredSerializer":["RunRequest"],"Serializer":["RunRequest"]},"_$RunRequest":{"RunRequest":[]},"_$ServiceExtensionRequestSerializer":{"StructuredSerializer":["ServiceExtensionRequest"],"Serializer":["ServiceExtensionRequest"]},"_$ServiceExtensionRequest":{"ServiceExtensionRequest":[]},"_$ServiceExtensionResponseSerializer":{"StructuredSerializer":["ServiceExtensionResponse"],"Serializer":["ServiceExtensionResponse"]},"_$ServiceExtensionResponse":{"ServiceExtensionResponse":[]},"SseSocketClient":{"SocketClient":[]},"WebSocketClient":{"SocketClient":[]},"Int32":{"Comparable":["Object"]},"Int64":{"Comparable":["Object"]},"RequestAbortedException":{"Exception":[]},"ByteStream":{"StreamView":["List"],"Stream":["List"],"Stream.T":"List","StreamView.T":"List"},"ClientException":{"Exception":[]},"Request":{"BaseRequest":[]},"StreamedResponseV2":{"StreamedResponse":[]},"CaseInsensitiveMap":{"CanonicalizedMap":["String","String","1"],"Map":["String","1"],"CanonicalizedMap.K":"String","CanonicalizedMap.V":"1","CanonicalizedMap.C":"String"},"Level":{"Comparable":["Level"]},"PathException":{"Exception":[]},"PosixStyle":{"InternalStyle":[]},"UrlStyle":{"InternalStyle":[]},"WindowsStyle":{"InternalStyle":[]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SseClient":{"StreamChannel":["String?"]},"GuaranteeChannel":{"StreamChannel":["1"]},"_GuaranteeSink":{"StreamSink":["1"]},"StreamChannelMixin":{"StreamChannel":["1"]},"StringScannerException":{"FormatException":[],"Exception":[]},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_EventStreamSubscription":{"StreamSubscription":["1"]},"BrowserWebSocket":{"WebSocket":[]},"TextDataReceived":{"WebSocketEvent":[]},"BinaryDataReceived":{"WebSocketEvent":[]},"CloseReceived":{"WebSocketEvent":[]},"WebSocketException":{"Exception":[]},"WebSocketConnectionClosed":{"Exception":[]},"AdapterWebSocketChannel":{"WebSocketChannel":[],"StreamChannel":["@"]},"_WebSocketSink":{"WebSocketSink":[],"DelegatingStreamSink":["@"],"StreamSink":["@"],"DelegatingStreamSink.T":"@"},"WebSocketChannelException":{"Exception":[]},"DdcLibraryBundleRestarter":{"Restarter":[]},"DdcRestarter":{"Restarter":[]},"RequireRestarter":{"Restarter":[]},"HotReloadFailedException":{"Exception":[]},"Int8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8ClampedList":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Int16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Int32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Float32List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"]},"Float64List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"]}}')); A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"NativeTypedArray":1,"_DelayedEvent":1,"_SplayTreeSet__SplayTree_Iterable":1,"_SplayTreeSet__SplayTree_Iterable_SetMixin":1,"_QueueList_Object_ListMixin":1,"StreamChannelMixin":1}')); var string$ = { x00_____: "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\u03f6\x00\u0404\u03f4 \u03f4\u03f6\u01f6\u01f6\u03f6\u03fc\u01f4\u03ff\u03ff\u0584\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u05d4\u01f4\x00\u01f4\x00\u0504\u05c4\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0400\x00\u0400\u0200\u03f7\u0200\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0200\u0200\u0200\u03f7\x00", @@ -29632,8 +29515,6 @@ BuildResult: findType("BuildResult"), BuildStatus: findType("BuildStatus"), BuiltListMultimap_dynamic_dynamic: findType("BuiltListMultimap<@,@>"), - BuiltList_DebugEvent: findType("BuiltList"), - BuiltList_ExtensionEvent: findType("BuiltList"), BuiltList_dynamic: findType("BuiltList<@>"), BuiltList_nullable_Object: findType("BuiltList"), BuiltMap_dynamic_dynamic: findType("BuiltMap<@,@>"), @@ -29681,6 +29562,7 @@ Iterable_int: findType("Iterable"), Iterable_nullable_Object: findType("Iterable"), JSArray_FullType: findType("JSArray"), + JSArray_JSObject: findType("JSArray"), JSArray_Object: findType("JSArray"), JSArray_String: findType("JSArray"), JSArray_Type: findType("JSArray"), diff --git a/dwds/lib/src/services/expression_compiler.dart b/dwds/lib/src/services/expression_compiler.dart index 9a2526d76..175a5b857 100644 --- a/dwds/lib/src/services/expression_compiler.dart +++ b/dwds/lib/src/services/expression_compiler.dart @@ -6,15 +6,11 @@ class CompilerOptions { final ModuleFormat moduleFormat; - @Deprecated('Only sound null safety is supported as of Dart 3.0') - final bool soundNullSafety; - final bool canaryFeatures; final List experiments; CompilerOptions({ required this.moduleFormat, - this.soundNullSafety = true, required this.canaryFeatures, required this.experiments, }); diff --git a/dwds/lib/src/services/expression_compiler_service.dart b/dwds/lib/src/services/expression_compiler_service.dart index dfb54be95..5b690f2a1 100644 --- a/dwds/lib/src/services/expression_compiler_service.dart +++ b/dwds/lib/src/services/expression_compiler_service.dart @@ -78,7 +78,6 @@ class _Compiler { '--module-format', compilerOptions.moduleFormat.name, if (verbose) '--verbose', - '--sound-null-safety', for (final experiment in compilerOptions.experiments) '--enable-experiment=$experiment', if (compilerOptions.canaryFeatures) '--canary', diff --git a/dwds/lib/src/utilities/sdk_configuration.dart b/dwds/lib/src/utilities/sdk_configuration.dart index 9f3657b1f..ead1769d3 100644 --- a/dwds/lib/src/utilities/sdk_configuration.dart +++ b/dwds/lib/src/utilities/sdk_configuration.dart @@ -47,12 +47,6 @@ class SdkLayout { final String summaryPath; final String dartdevcSnapshotPath; - @Deprecated('Only sound null safety is supported as of Dart 3.0') - final String soundSummaryPath; - - @Deprecated('Only sound null safety is supported as of Dart 3.0') - final String weakSummaryPath; - SdkLayout.createDefault(String sdkDirectory) : this( sdkDirectory: sdkDirectory, @@ -73,8 +67,6 @@ class SdkLayout { const SdkLayout({ required this.sdkDirectory, required this.summaryPath, - this.soundSummaryPath = '', - this.weakSummaryPath = '', required this.dartdevcSnapshotPath, }); } @@ -93,17 +85,9 @@ class SdkConfiguration { final String? sdkSummaryPath; final String? compilerWorkerPath; - @Deprecated('Only sound null safety is supported as of Dart 3.0') - final String? weakSdkSummaryPath; - - @Deprecated('Only sound null safety is supported as of Dart 3.0') - final String? soundSdkSummaryPath; - const SdkConfiguration({ this.sdkDirectory, this.sdkSummaryPath, - this.weakSdkSummaryPath, - this.soundSdkSummaryPath, this.compilerWorkerPath, }); @@ -123,12 +107,6 @@ class SdkConfiguration { Uri? get sdkDirectoryUri => _toUri(sdkDirectory); Uri? get sdkSummaryUri => _toUri(sdkSummaryPath); - @Deprecated('Only sound null safety is supported as of Dart 3.0') - Uri? get soundSdkSummaryUri => _toUri(soundSdkSummaryPath); - - @Deprecated('Only sound null safety is supported as of Dart 3.0') - Uri? get weakSdkSummaryUri => _toUri(weakSdkSummaryPath); - /// Note: has to be ///file: Uri to run in an isolate. Uri? get compilerWorkerUri => _toAbsoluteUri(compilerWorkerPath); diff --git a/dwds/lib/src/version.dart b/dwds/lib/src/version.dart index 4c6b87ade..2027c81a2 100644 --- a/dwds/lib/src/version.dart +++ b/dwds/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '24.4.2-wip'; +const packageVersion = '25.0.0-wip'; diff --git a/dwds/pubspec.yaml b/dwds/pubspec.yaml index e394f75d2..6d67660a2 100644 --- a/dwds/pubspec.yaml +++ b/dwds/pubspec.yaml @@ -1,6 +1,6 @@ name: dwds # Every time this changes you need to run `dart run build_runner build`. -version: 24.4.2-wip +version: 25.0.0-wip description: >- A service that proxies between the Chrome debug protocol and the Dart VM diff --git a/dwds/test/sdk_configuration_test.dart b/dwds/test/sdk_configuration_test.dart index e8e77dd08..bf2901dab 100644 --- a/dwds/test/sdk_configuration_test.dart +++ b/dwds/test/sdk_configuration_test.dart @@ -143,7 +143,7 @@ class FakeSdkLayout { FakeSdkLayout(this.sdkDirectory); - String get summaryPath => p.join(sdkDirectory, 'summaries', 'sound.dill'); + String get summaryPath => p.join(sdkDirectory, 'summaries', 'outline.dill'); String get compilerWorkerPath => p.join(sdkDirectory, 'snapshots', 'test.snapshot');