Skip to content

Commit 3dd1630

Browse files
author
Dart CI
committed
Version 2.13.0-204.0.dev
Merge commit 'a6ffc74a4a6b75e20968b42ad2d19fc07a5b1e82' into 'dev'
2 parents c274ba7 + a6ffc74 commit 3dd1630

File tree

71 files changed

+2346
-5093
lines changed

Some content is hidden

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

71 files changed

+2346
-5093
lines changed

.dart_tool/package_config.json

Lines changed: 1 addition & 7 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": "2021-03-29T21:48:35.411283",
14+
"generated": "2021-04-05T08:58:24.237896",
1515
"generator": "tools/generate_package_config.dart",
1616
"packages": [
1717
{
@@ -442,12 +442,6 @@
442442
"packageUri": "lib/",
443443
"languageVersion": "2.2"
444444
},
445-
{
446-
"name": "mustache",
447-
"rootUri": "../third_party/pkg/mustache",
448-
"packageUri": "lib/",
449-
"languageVersion": "2.0"
450-
},
451445
{
452446
"name": "native_stack_traces",
453447
"rootUri": "../pkg/native_stack_traces",

DEPS

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ vars = {
102102

103103
"chromedriver_tag": "83.0.4103.39",
104104
"browser_launcher_rev": "12ab9f351a44ac803de9bc17bb2180bb312a9dd7",
105-
"dartdoc_rev" : "e2d010ed74059be942a78ced5f35f1b8d667ed16",
105+
"dartdoc_rev" : "505f163f7cb48e917503e4a23fbff1227e08b263",
106106
"ffi_rev": "f3346299c55669cc0db48afae85b8110088bf8da",
107107
"fixnum_rev": "16d3890c6dc82ca629659da1934e412292508bba",
108108
"file_rev": "0e09370f581ab6388d46fda4cdab66638c0171a1",
@@ -126,7 +126,6 @@ vars = {
126126
"matcher_rev": "1f7b6f0cb15eb6659a1de0513571575a5c8a51d0",
127127
"mime_rev": "c931f4bed87221beaece356494b43731445ce7b8",
128128
"mockito_rev": "d39ac507483b9891165e422ec98d9fb480037c8b",
129-
"mustache_rev": "664737ecad027e6b96d0d1e627257efa0e46fcb1",
130129
"oauth2_rev": "7cd3284049fe5badbec9f2bea2afc41d14c01057",
131130
"package_config_rev": "a84c0d45401f215fbe9384df923a38f4022a3c45",
132131
"path_rev": "407ab76187fade41c31e39c745b39661b710106c",
@@ -379,10 +378,6 @@ deps = {
379378
Var("dart_git") + "mime.git" + "@" + Var("mime_rev"),
380379
Var("dart_root") + "/third_party/pkg/mockito":
381380
Var("dart_git") + "mockito.git" + "@" + Var("mockito_rev"),
382-
Var("dart_root") + "/third_party/pkg/mustache":
383-
Var("dart_git")
384-
+ "external/github.com/xxgreg/mustache"
385-
+ "@" + Var("mustache_rev"),
386381
Var("dart_root") + "/third_party/pkg/oauth2":
387382
Var("dart_git") + "oauth2.git" + "@" + Var("oauth2_rev"),
388383
Var("dart_root") + "/third_party/pkg_tested/package_config":

pkg/analysis_server/lib/plugin/edit/fix/fix_dart.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
import 'package:analysis_server/plugin/edit/fix/fix_core.dart';
86
import 'package:analysis_server/src/services/correction/fix/dart/top_level_declarations.dart';
97
import 'package:analyzer/dart/analysis/results.dart';

pkg/analysis_server/lib/src/lsp/client_configuration.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
/// Wraps the client (editor) configuration to provide stronger typing and
86
/// handling of default values where a setting has not been supplied.
97
class LspClientConfiguration {

pkg/analysis_server/lib/src/lsp/dartdoc.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
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-
75
final _dartdocCodeBlockSections = RegExp(r'(```\w+) +\w+');
86
final _dartdocDirectives =
97
RegExp(r'(\n *{@.*?}$)|(^{@.*?}\n)', multiLine: true);
108

11-
String cleanDartdoc(String doc) {
9+
String? cleanDartdoc(String? doc) {
1210
if (doc == null) {
1311
return null;
1412
}
@@ -19,7 +17,7 @@ String cleanDartdoc(String doc) {
1917
// docs contain.
2018
doc = doc.replaceAllMapped(
2119
_dartdocCodeBlockSections,
22-
(match) => match.group(1),
20+
(match) => match.group(1)!,
2321
);
2422

2523
return doc;

pkg/analysis_server/lib/src/lsp/json_parsing.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
import 'dart:collection';
86

97
final nullLspJsonReporter = _NullLspJsonReporter();
@@ -18,13 +16,13 @@ class LspJsonReporter {
1816
/// being validated.
1917
final ListQueue<String> path = ListQueue<String>();
2018

21-
LspJsonReporter([String initialField]) {
19+
LspJsonReporter([String? initialField]) {
2220
if (initialField != null) {
2321
path.add(initialField);
2422
}
2523
}
2624

27-
/// Pops the last field off the stack to become the current gield.
25+
/// Pops the last field off the stack to become the current field.
2826
void pop() => path.removeLast();
2927

3028
/// Pushes the current field onto a stack to allow reporting errors in child

pkg/analysis_server/lib/src/server/crash_reporting_attachments.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
import 'package:analyzer/instrumentation/service.dart';
86
import 'package:analyzer/src/dart/analysis/driver.dart' show ExceptionResult;
97

pkg/analysis_server/lib/src/server/diagnostic_server.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
/// A handle to start, and return the current port of, a diagnostic server.
86
abstract class DiagnosticServer {
97
/// Return the port of the diagnostic web server. If the server is not running

pkg/analysis_server/lib/src/server/features.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
/// The set of features enabled in a server session.
86
///
97
/// When some features are not enabled, the server might avoid doing work

pkg/analysis_server/lib/src/server/sdk_configuration.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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-
75
import 'dart:convert';
86
import 'dart:io';
97

0 commit comments

Comments
 (0)