Skip to content

Commit

Permalink
Replace @sealed meta usage with keyword (#3445)
Browse files Browse the repository at this point in the history
  • Loading branch information
parlough committed Jun 14, 2023
1 parent 8e9d89e commit 19ad21a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/src/comment_references/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:meta/meta.dart';

import '../charcode.dart';

const _operatorKeyword = 'operator';
Expand Down Expand Up @@ -481,9 +479,8 @@ class _SuffixParseResult {
_SuffixParseResult._(_SuffixResultType.notSuffix, null);
}

@sealed
// TODO(jcollins-g): add SourceSpans?
abstract class CommentReferenceNode {
sealed class CommentReferenceNode {
String get text;
}

Expand Down

0 comments on commit 19ad21a

Please sign in to comment.