Skip to content

Commit

Permalink
Remove an unused Parser.scanWhitespace() method (#770)
Browse files Browse the repository at this point in the history
Closes #767
  • Loading branch information
nex3 authored Jul 18, 2019
1 parent ea4436b commit c971615
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lib/src/parse/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit c971615

Please sign in to comment.