MCPcopy Create free account
hub / github.com/microsoft/vscode-cpptools / takeWhitespace

Method takeWhitespace

Extension/src/Utility/Text/scanner.ts:641–645  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

639 }
640
641 takeWhitespace() {
642 while (!this.eof && this.isWhitespace) {
643 this.scan();
644 }
645 }
646
647 takeWhiteSpaceAndNewLines() {
648 while (!this.eof && (this.isWhitespace || this.isNewLine)) {

Callers

nothing calls this directly

Calls 1

scanMethod · 0.95

Tested by

no test coverage detected