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

Unified Diff: pkg/analyzer/lib/src/plugin/plugin_configuration.dart

Issue 1367723003: ErrorHandler typedef fix. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: version bump Created 5 years, 3 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
« no previous file with comments | « pkg/analyzer/CHANGELOG.md ('k') | pkg/analyzer/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/plugin/plugin_configuration.dart
diff --git a/pkg/analyzer/lib/src/plugin/plugin_configuration.dart b/pkg/analyzer/lib/src/plugin/plugin_configuration.dart
index e4512fb160936af8e7b9b0b13d69193efa71b283..9809bdcfea4178342983ae43647eb0e7075945c7 100644
--- a/pkg/analyzer/lib/src/plugin/plugin_configuration.dart
+++ b/pkg/analyzer/lib/src/plugin/plugin_configuration.dart
@@ -30,7 +30,8 @@ PluginInfo _processPluginMapping(dynamic name, dynamic details) {
return null;
}
-typedef ErrorHandler(Exception);
+/// A callback for error handling.
+typedef ErrorHandler(Exception e);
/// Describes plugin configuration information as extracted from an
/// analysis options map.
« no previous file with comments | « pkg/analyzer/CHANGELOG.md ('k') | pkg/analyzer/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698