Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 8be6a08

Browse files
author
Dart CI
committed
Version 2.11.0-238.0.dev
Merge commit '43166018a96181819905d292232b69df5e67aa3e' into 'dev'
2 parents fc82eee + 4316601 commit 8be6a08

File tree

3,395 files changed

+102698
-66788
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,395 files changed

+102698
-66788
lines changed

.dart_tool/package_config.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"constraint, update this by running tools/generate_package_config.dart."
1212
],
1313
"configVersion": 2,
14-
"generated": "2020-10-15T16:28:43.685252",
14+
"generated": "2020-10-20T09:30:11.069083",
1515
"generator": "tools/generate_package_config.dart",
1616
"packages": [
1717
{
@@ -295,7 +295,7 @@
295295
"name": "http",
296296
"rootUri": "../third_party/pkg/http",
297297
"packageUri": "lib/",
298-
"languageVersion": "2.4"
298+
"languageVersion": "2.10"
299299
},
300300
{
301301
"name": "http_io",
@@ -313,7 +313,7 @@
313313
"name": "http_parser",
314314
"rootUri": "../third_party/pkg/http_parser",
315315
"packageUri": "lib/",
316-
"languageVersion": "2.3"
316+
"languageVersion": "2.11"
317317
},
318318
{
319319
"name": "http_retry",
@@ -377,7 +377,7 @@
377377
"name": "logging",
378378
"rootUri": "../third_party/pkg/logging",
379379
"packageUri": "lib/",
380-
"languageVersion": "2.0"
380+
"languageVersion": "2.10"
381381
},
382382
{
383383
"name": "markdown",
@@ -766,4 +766,4 @@
766766
"languageVersion": "2.4"
767767
}
768768
]
769-
}
769+
}

DEPS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,17 @@ vars = {
104104
"html_rev": "22f17e97fedeacaa1e945cf84d8016284eed33a6",
105105
"http_io_rev": "2fa188caf7937e313026557713f7feffedd4978b",
106106
"http_multi_server_rev" : "ea269f79321d659208402088f3297e8920a88ee6",
107-
"http_parser_rev": "6e63a97b5aaa2b4d1215fe01683e51fb73258e54",
107+
"http_parser_rev": "5dd4d16693242049dfb43b5efa429fedbf932e98",
108108
"http_retry_tag": "0.1.1",
109-
"http_rev": "ca418355b5fc60cf981de3bd7364ec0dd943fa8f",
109+
"http_rev": "20e3a594872ae1565249c7cfc8977f9a10ca9927",
110110
"http_throttle_tag" : "1.0.2",
111111
"icu_rev" : "79326efe26e5440f530963704c3c0ff965b3a4ac",
112112
"idl_parser_rev": "5fb1ebf49d235b5a70c9f49047e83b0654031eb7",
113113
"intl_tag": "0.16.1",
114114
"jinja2_rev": "2222b31554f03e62600cd7e383376a7c187967a1",
115115
"json_rpc_2_rev": "8f189db8f0c299187a0e8fa959dba7e9b0254be5",
116116
"linter_tag": "0.1.121",
117-
"logging_rev": "1590ba0b648a51e7eb3895c612e4b72f72623b6f",
117+
"logging_rev": "9d2a7fdd05b09bc06474881152b5baaf38fd1329",
118118
"markupsafe_rev": "8f45f5cfa0009d2a70589bcda0349b8cb2b72783",
119119
"markdown_rev": "6f89681d59541ddb1cf3a58efbdaa2304ffc3f51",
120120
"matcher_rev": "9cae8faa7868bf3a88a7ba45eb0bd128e66ac515",

pkg/_fe_analyzer_shared/lib/src/messages/codes_generated.dart

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4607,6 +4607,58 @@ const MessageCode messageIncorrectTypeArgumentVariable = const MessageCode(
46074607
severity: Severity.context,
46084608
message: r"""This is the type variable whose bound isn't conformed to.""");
46094609

4610+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4611+
const Template<
4612+
Message Function(
4613+
String
4614+
string)> templateIncrementalCompilerIllegalParameter = const Template<
4615+
Message Function(String string)>(
4616+
messageTemplate:
4617+
r"""Illegal parameter name '#string' found during expression compilation.""",
4618+
withArguments: _withArgumentsIncrementalCompilerIllegalParameter);
4619+
4620+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4621+
const Code<Message Function(String string)>
4622+
codeIncrementalCompilerIllegalParameter =
4623+
const Code<Message Function(String string)>(
4624+
"IncrementalCompilerIllegalParameter",
4625+
templateIncrementalCompilerIllegalParameter,
4626+
);
4627+
4628+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4629+
Message _withArgumentsIncrementalCompilerIllegalParameter(String string) {
4630+
if (string.isEmpty) throw 'No string provided';
4631+
return new Message(codeIncrementalCompilerIllegalParameter,
4632+
message:
4633+
"""Illegal parameter name '${string}' found during expression compilation.""",
4634+
arguments: {'string': string});
4635+
}
4636+
4637+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4638+
const Template<Message Function(String string)>
4639+
templateIncrementalCompilerIllegalTypeParameter =
4640+
const Template<Message Function(String string)>(
4641+
messageTemplate:
4642+
r"""Illegal type parameter name '#string' found during expression compilation.""",
4643+
withArguments: _withArgumentsIncrementalCompilerIllegalTypeParameter);
4644+
4645+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4646+
const Code<Message Function(String string)>
4647+
codeIncrementalCompilerIllegalTypeParameter =
4648+
const Code<Message Function(String string)>(
4649+
"IncrementalCompilerIllegalTypeParameter",
4650+
templateIncrementalCompilerIllegalTypeParameter,
4651+
);
4652+
4653+
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4654+
Message _withArgumentsIncrementalCompilerIllegalTypeParameter(String string) {
4655+
if (string.isEmpty) throw 'No string provided';
4656+
return new Message(codeIncrementalCompilerIllegalTypeParameter,
4657+
message:
4658+
"""Illegal type parameter name '${string}' found during expression compilation.""",
4659+
arguments: {'string': string});
4660+
}
4661+
46104662
// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
46114663
const Template<Message Function(Uri uri_)> templateInferredPackageUri =
46124664
const Template<Message Function(Uri uri_)>(

pkg/_fe_analyzer_shared/test/constants/data/basic.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
const null0 = /*cfe.Null()*/ null;
68
const bool0 = /*cfe.Bool(true)*/ true;
79
const bool1 = /*cfe.Bool(false)*/ false;

pkg/_fe_analyzer_shared/test/constants/data/errors.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
String method() => 'foo';
68

79
const String string0 =

pkg/_fe_analyzer_shared/test/constants/data/function.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
T method1<T>(T t) => t;
68
Map<T, S> method2<T, S>(T t, S s) => {t: s};
79

pkg/_fe_analyzer_shared/test/constants/data/list.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
const list0 = /*cfe.List<dynamic>()*/ [];
68

79
// TODO(johnniwinther): This seems like an odd offset for the constant. It

pkg/_fe_analyzer_shared/test/constants/data/map.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
const map0 = /*cfe.Map<dynamic,dynamic>()*/ {};
68

79
// TODO(johnniwinther): This seems like an odd offset for the constant. It

pkg/_fe_analyzer_shared/test/constants/data/set.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
// ignore: sdk_version_set_literal
68
const Set set0 = /*cfe.Set<dynamic>()*/ {};
79

pkg/_fe_analyzer_shared/test/constants/data/type_literals.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
6+
57
import 'dart:async';
68

79
typedef Typedef();

0 commit comments

Comments
 (0)