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

Unified Diff: pkg/analyzer_cli/test/data/errors_reported_once/foo.dart

Issue 2704103002: Some improvements to the command-line analyzer's output. (Closed)
Patch Set: review comments Created 3 years, 10 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/analyzer_cli/test/data/errors_reported_once/foo.dart
diff --git a/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart b/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart
new file mode 100644
index 0000000000000000000000000000000000000000..dc6186d75b6b982951b94a08c696939b74d09f0b
--- /dev/null
+++ b/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart
@@ -0,0 +1,11 @@
+library foo;
+
+import 'bar.dart';
+
+part 'foo_part.dart';
+
+void main() {
+ print('foo');
+ foo_part();
+ bar();
+}

Powered by Google App Engine
This is Rietveld 408576698