Issue 29303. Prefer import updates and SDK imports over other imports.

R=brianwilkerson@google.com
BUG= https://github.com/dart-lang/sdk/issues/29303

Review-Url: https://codereview.chromium.org/2808803003 .
This commit is contained in:
Konstantin Shcheglov 2017-04-10 09:52:40 -07:00
parent d5521a52b2
commit 3be10faaee

View file

@ -177,9 +177,9 @@ class DartFixKind {
static const IMPORT_LIBRARY_PROJECT3 =
const FixKind('IMPORT_LIBRARY_PROJECT3', 49, "Import library '{0}'");
static const IMPORT_LIBRARY_SDK =
const FixKind('IMPORT_LIBRARY_SDK', 49, "Import library '{0}'");
const FixKind('IMPORT_LIBRARY_SDK', 46, "Import library '{0}'");
static const IMPORT_LIBRARY_SHOW =
const FixKind('IMPORT_LIBRARY_SHOW', 49, "Update library '{0}' import");
const FixKind('IMPORT_LIBRARY_SHOW', 45, "Update library '{0}' import");
static const INSERT_SEMICOLON =
const FixKind('INSERT_SEMICOLON', 50, "Insert ';'");
static const LINT_ADD_OVERRIDE =