Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Unified Diff: pkg/analysis_server/test/protocol_server_test.dart

Issue 1385523002: AnalysisError `hasFix` attr (Implements #23874). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Doc typo fix. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/protocol_server_test.dart
diff --git a/pkg/analysis_server/test/protocol_server_test.dart b/pkg/analysis_server/test/protocol_server_test.dart
index 7abbe3f70314f963ca3c12d7f51bb32f22727fbc..d770e3505a32f9ce30498deecc42b78968048ccb 100644
--- a/pkg/analysis_server/test/protocol_server_test.dart
+++ b/pkg/analysis_server/test/protocol_server_test.dart
@@ -72,7 +72,8 @@ class AnalysisErrorTest {
START_COLUMN: 2
},
MESSAGE: 'my message',
- CORRECTION: 'my correction'
+ CORRECTION: 'my correction',
+ HAS_FIX : false
});
}
@@ -89,7 +90,8 @@ class AnalysisErrorTest {
START_LINE: 3,
START_COLUMN: 2
},
- MESSAGE: 'my message'
+ MESSAGE: 'my message',
+ HAS_FIX : false
});
}
@@ -106,7 +108,8 @@ class AnalysisErrorTest {
START_LINE: -1,
START_COLUMN: -1
},
- MESSAGE: 'my message'
+ MESSAGE: 'my message',
+ HAS_FIX : false
});
}
}

Powered by Google App Engine
This is Rietveld 408576698