From deccd853c6344de3c3f2f4e9599fe1b6b969136c Mon Sep 17 00:00:00 2001 From: Hixie Date: Fri, 23 Oct 2015 09:56:50 -0700 Subject: [PATCH] Rev the Dart SDK to pick up better dartdocs --- engine/src/flutter/sky/tools/skyanalyzer | 2 +- engine/src/flutter/tools/dart/update.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/sky/tools/skyanalyzer b/engine/src/flutter/sky/tools/skyanalyzer index 6d781dcfb6..fc2ae42548 100755 --- a/engine/src/flutter/sky/tools/skyanalyzer +++ b/engine/src/flutter/sky/tools/skyanalyzer @@ -25,7 +25,7 @@ _IGNORED_PATTERNS = [ re.compile(r'^$'), re.compile(r'^Analyzing \['), re.compile(r'^No issues found'), - re.compile(r'^[0-9]+ (error|warning|hint).*found\.'), + re.compile(r'^[0-9]+ (error|warning|hint|lint).*found\.'), # We still have some parts in our code, so silence the warnings that come from trying to analyze them directly. re.compile(r'^Only libraries can be analyzed\.$'), diff --git a/engine/src/flutter/tools/dart/update.py b/engine/src/flutter/tools/dart/update.py index ce2715cdd3..f6790fc623 100755 --- a/engine/src/flutter/tools/dart/update.py +++ b/engine/src/flutter/tools/dart/update.py @@ -18,7 +18,7 @@ import sys # How to roll the dart sdk: Just change this url! We write this to the stamp # file after we download, and then check the stamp file for differences. SDK_URL_BASE = ('http://gsdview.appspot.com/dart-archive/channels/dev/raw/' - '1.13.0-dev.6.0/sdk/') + '1.13.0-dev.7.4/sdk/') LINUX_64_SDK = 'dartsdk-linux-x64-release.zip' MACOS_64_SDK = 'dartsdk-macos-x64-release.zip'