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

Commit a9d212b

Browse files
michaltcommit-bot@chromium.org
authored andcommitted
Revert "Reland "Roll the latest args package into the SDK repo.""
This reverts commit f9bb05a. Reason for revert: We discovered more breakage in google3: http://b/174613423#comment14 Original change's description: > Reland "Roll the latest args package into the SDK repo." > > This is a reland of 9906fab > > Original change's description: > > Roll the latest args package into the SDK repo. > > > > Change-Id: Ie464e5c01f34a101103d16ff108b6b9eb80fbd4b > > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/174485 > > Reviewed-by: Nate Bosch <[email protected]> > > Commit-Queue: Bob Nystrom <[email protected]> > > Auto-Submit: Bob Nystrom <[email protected]> > > Change-Id: I5b7b041e02857114c257393cf9d560b6b8b03fd5 > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/174701 > Reviewed-by: Daco Harkes <[email protected]> > Reviewed-by: Martin Kustermann <[email protected]> > Commit-Queue: Tess Strickland <[email protected]> [email protected],[email protected],[email protected],[email protected],[email protected] Change-Id: Ie47133a25e86e36b0eecdbb3da7abc1388816b71 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/174921 Reviewed-by: Michal Terepeta <[email protected]> Reviewed-by: David Morgan <[email protected]> Reviewed-by: Tess Strickland <[email protected]> Commit-Queue: Tess Strickland <[email protected]> Commit-Queue: Michal Terepeta <[email protected]>
1 parent c5eb666 commit a9d212b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.dart_tool/package_config.json

Lines changed: 2 additions & 2 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-11-30T16:23:50.740805",
14+
"generated": "2020-11-15T14:18:10.587065",
1515
"generator": "tools/generate_package_config.dart",
1616
"packages": [
1717
{
@@ -101,7 +101,7 @@
101101
"name": "args",
102102
"rootUri": "../third_party/pkg/args",
103103
"packageUri": "lib/",
104-
"languageVersion": "2.12"
104+
"languageVersion": "2.3"
105105
},
106106
{
107107
"name": "async",

DEPS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ vars = {
6868
"gperftools_revision": "180bfa10d7cb38e8b3784d60943d50e8fcef0dcb",
6969

7070
# Revisions of /third_party/* dependencies.
71-
"args_rev": "139140125126661fac88c9aa5882165936d01c91",
71+
"args_tag": "1.6.0",
7272
"async_rev": "695b3ac280f107c84adf7488743abfdfaaeea68f",
7373
"bazel_worker_rev": "060c55a933d39798681a4f533b161b81dc48d77e",
7474
"benchmark_harness_rev": "ec6b646f5443faa871e126ac1ba248c94ca06257",
@@ -301,7 +301,7 @@ deps = {
301301
"@" + Var("gperftools_revision"),
302302

303303
Var("dart_root") + "/third_party/pkg/args":
304-
Var("dart_git") + "args.git" + "@" + Var("args_rev"),
304+
Var("dart_git") + "args.git" + "@" + Var("args_tag"),
305305
Var("dart_root") + "/third_party/pkg/async":
306306
Var("dart_git") + "async.git" + "@" + Var("async_rev"),
307307
Var("dart_root") + "/third_party/pkg/bazel_worker":

pkg/native_stack_traces/bin/decode.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,12 +300,12 @@ Future<void> main(List<String> arguments) async {
300300
if (options['help']) return print(_usages[options.command?.name]);
301301
if (options.command == null) return errorWithUsage('no command provided');
302302

303-
switch (options.command!.name) {
303+
switch (options.command.name) {
304304
case 'help':
305-
return help(options.command!);
305+
return help(options.command);
306306
case 'find':
307-
return find(options.command!);
307+
return find(options.command);
308308
case 'translate':
309-
return await translate(options.command!);
309+
return await translate(options.command);
310310
}
311311
}

0 commit comments

Comments
 (0)