From 7113a729cd8884b28c88de26f4ee5eb28089893e Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Thu, 2 Jan 2020 14:53:19 -0800 Subject: [PATCH] Update dependency versions (#918) --- pubspec.yaml | 4 ++-- tool/grind/synchronize.dart | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5113e6842..8f0b7a0b0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -23,7 +23,7 @@ dependencies: source_maps: "^0.10.5" source_span: "^1.4.0" stack_trace: ">=0.9.0 <2.0.0" - stream_transform: "^0.0.20" + stream_transform: ">=0.0.20 <2.0.0" string_scanner: ">=0.1.5 <2.0.0" term_glyph: "^1.0.0" tuple: "^1.0.0" @@ -31,7 +31,7 @@ dependencies: dev_dependencies: archive: ">=1.0.0 <3.0.0" - analyzer: ">=0.36.4 <0.37.0" + analyzer: ">=0.37.0 <0.40.0" crypto: ">=0.9.2 <3.0.0" dart_style: "^1.2.0" grinder: "^0.8.0" diff --git a/tool/grind/synchronize.dart b/tool/grind/synchronize.dart index 34e5ea0ef..be3e6e25b 100644 --- a/tool/grind/synchronize.dart +++ b/tool/grind/synchronize.dart @@ -43,7 +43,7 @@ final _sharedClasses = const ['EvaluateResult', 'CompileResult']; void synchronize() { sources.forEach((source, target) { var visitor = _Visitor(File(source).readAsStringSync(), source); - parseFile2(path: source, featureSet: FeatureSet.fromEnableFlags([])) + parseFile(path: source, featureSet: FeatureSet.fromEnableFlags([])) .unit .accept(visitor); var formatted = DartFormatter().format(visitor.result);