diff --git a/lib/src/parse/parser.dart b/lib/src/parse/parser.dart index 5c4517d3..d2bf95a0 100644 --- a/lib/src/parse/parser.dart +++ b/lib/src/parse/parser.dart @@ -78,14 +78,6 @@ class Parser { } while (scanComment()); } - /// Like [whitespace], but returns whether any was consumed. - @protected - bool scanWhitespace() { - var start = scanner.position; - whitespace(); - return scanner.position != start; - } - /// Consumes whitespace, but not comments. @protected void whitespaceWithoutComments() {