@@ -2287,39 +2287,6 @@ class Listener implements UnescapeErrorListener {
2287
2287
logEvent ("Script" );
2288
2288
}
2289
2289
2290
- /// A single comment reference has been found
2291
- /// where [referenceSource] is the text between the `[` and `]`
2292
- /// and [referenceOffset] is the character offset in the token stream.
2293
- ///
2294
- /// This event is generated by the parser when the parser's
2295
- /// `parseCommentReferences` method is called. For further processing,
2296
- /// a listener may scan the [referenceSource] and then pass the resulting
2297
- /// token stream to the parser's `parseOneCommentReference` method.
2298
- void handleCommentReferenceText (String referenceSource, int referenceOffset) {
2299
- logEvent ("CommentReferenceText" );
2300
- }
2301
-
2302
- /// A single comment reference has been parsed.
2303
- /// * [newKeyword] may be null.
2304
- /// * [firstToken] and [firstPeriod] are either both tokens or both
2305
- /// `null` .
2306
- /// * [secondToken] and [secondPeriod] are either both tokens or both `null` .
2307
- /// * [thirdToken] can be an identifier or an operator.
2308
- ///
2309
- /// This event is generated by the parser when the parser's
2310
- /// `parseOneCommentReference` method is called.
2311
- void handleCommentReference (
2312
- Token ? newKeyword,
2313
- Token ? firstToken,
2314
- Token ? firstPeriod,
2315
- Token ? secondToken,
2316
- Token ? secondPeriod,
2317
- Token thirdToken) {}
2318
-
2319
- /// This event is generated by the parser when the parser's
2320
- /// `parseOneCommentReference` method is called.
2321
- void handleNoCommentReference () {}
2322
-
2323
2290
/// An expression was encountered consisting of type arguments applied to a
2324
2291
/// subexpression. This could validly represent any of the following:
2325
2292
/// - A type literal (`var x = List<int>;` )
0 commit comments