From 8cb99e4411c44d91a9dae329ba17f6f84c6a67e7 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Sat, 1 Jul 2023 16:04:00 -0700 Subject: [PATCH] address new analysis issues (#219) --- CHANGELOG.md | 3 +++ pubspec.yaml | 2 +- test/tokenizer_test.dart | 2 -- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27ce0c0..fa79fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.15.5-wip + + ## 0.15.4 - Widen the dependency on `package:csslib`. diff --git a/pubspec.yaml b/pubspec.yaml index e16c0ee..e73d479 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: html -version: 0.15.4 +version: 0.15.5-wip description: APIs for parsing and manipulating HTML content outside the browser. repository: https://github.com/dart-lang/html diff --git a/test/tokenizer_test.dart b/test/tokenizer_test.dart index 1281906..74a4a48 100644 --- a/test/tokenizer_test.dart +++ b/test/tokenizer_test.dart @@ -124,8 +124,6 @@ class TokenizerTestParser { addOutputToken(token, ['Character', token.data]); } - void processEOF(StringToken token) {} - void processParseError(StringToken token) { // TODO(jmesserly): when debugging test failures it can be useful to add // logging here like `print('ParseError $token');`. It would be nice to