| Index: pkg/analyzer/lib/src/services/formatter_impl.dart
|
| diff --git a/pkg/analyzer/lib/src/services/formatter_impl.dart b/pkg/analyzer/lib/src/services/formatter_impl.dart
|
| index 4c0757a34e9b3813200b569d0d0f91229242067e..3e4bcc50187c79bc30e101b25c656fa04bdc7859 100644
|
| --- a/pkg/analyzer/lib/src/services/formatter_impl.dart
|
| +++ b/pkg/analyzer/lib/src/services/formatter_impl.dart
|
| @@ -59,16 +59,13 @@ class FormatterException implements Exception {
|
|
|
| /// Specifies the kind of code snippet to format.
|
| class CodeKind {
|
| -
|
| - final int _index;
|
| -
|
| - const CodeKind._(this._index);
|
| + const CodeKind._();
|
|
|
| /// A compilation unit snippet.
|
| - static const COMPILATION_UNIT = const CodeKind._(0);
|
| + static const COMPILATION_UNIT = const CodeKind._();
|
|
|
| /// A statement snippet.
|
| - static const STATEMENT = const CodeKind._(1);
|
| + static const STATEMENT = const CodeKind._();
|
|
|
| }
|
|
|
|
|