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

Unified Diff: pkg/analyzer/lib/dart/element/element.dart

Issue 2765153002: Fix analyzer formatter errors. (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | pkg/analyzer/lib/src/dart/element/type.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/dart/element/element.dart
diff --git a/pkg/analyzer/lib/dart/element/element.dart b/pkg/analyzer/lib/dart/element/element.dart
index a69b29b57e53ae627b99e0c99739361ada847f81..ddc60a5ea02866c9b82f46f53238693ff93eae1a 100644
--- a/pkg/analyzer/lib/dart/element/element.dart
+++ b/pkg/analyzer/lib/dart/element/element.dart
@@ -903,7 +903,8 @@ class ElementKind implements Comparable<ElementKind> {
static const ElementKind FUNCTION =
const ElementKind('FUNCTION', 7, "function");
- static const ElementKind GENERIC_FUNCTION_TYPE = const ElementKind('GENERIC_FUNCTION_TYPE', 8, 'generic function type');
+ static const ElementKind GENERIC_FUNCTION_TYPE =
+ const ElementKind('GENERIC_FUNCTION_TYPE', 8, 'generic function type');
static const ElementKind GETTER = const ElementKind('GETTER', 9, "getter");
@@ -1278,9 +1279,7 @@ abstract class FunctionElement implements ExecutableElement, LocalElement {
/**
* The pseudo-declaration that defines a generic function type.
*/
-abstract class GenericFunctionTypeElement implements FunctionTypedElement {
-
-}
+abstract class GenericFunctionTypeElement implements FunctionTypedElement {}
/**
* A function type alias (`typedef`).
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/element/type.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698