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

Method skip

Extension/src/Utility/Process/streams.ts:156–163  ·  view source on GitHub ↗

* Skips a number of lines. * * @param count the number of lines to skip * @returns this

(count: number)

Source from the content-addressed store, hash-verified

154 * @returns this
155 */
156 async skip(count: number) {
157 do {
158 await this.line();
159 if (--count === 0) {
160 return this;
161 }
162 } while (true);
163 }
164
165 /**
166 * Checks if the a line is a match for the current expression.

Callers 2

quickInfo.test.tsFile · 0.80
skipFunction · 0.80

Calls 1

lineMethod · 0.95

Tested by

no test coverage detected