From 98f016a939ca4f91e1b881d1bbbffc7c22bd677a 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 (dart-lang/html#219) --- pkgs/html/CHANGELOG.md | 3 +++ pkgs/html/pubspec.yaml | 2 +- pkgs/html/test/tokenizer_test.dart | 2 -- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/html/CHANGELOG.md b/pkgs/html/CHANGELOG.md index 27ce0c04d..fa79fbcf1 100644 --- a/pkgs/html/CHANGELOG.md +++ b/pkgs/html/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.15.5-wip + + ## 0.15.4 - Widen the dependency on `package:csslib`. diff --git a/pkgs/html/pubspec.yaml b/pkgs/html/pubspec.yaml index e16c0ee51..e73d47995 100644 --- a/pkgs/html/pubspec.yaml +++ b/pkgs/html/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/pkgs/html/test/tokenizer_test.dart b/pkgs/html/test/tokenizer_test.dart index 128190635..74a4a48fa 100644 --- a/pkgs/html/test/tokenizer_test.dart +++ b/pkgs/html/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