MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / consumeCDC

Method consumeCDC

packages/core/css/CSS3Parser.ts:265–273  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

263 }
264
265 private consumeCDC(): '-->' | null {
266 if (this.text.substr(this.nextInputCodePointIndex, 3) === '-->') {
267 this.nextInputCodePointIndex += 3;
268
269 return '-->';
270 }
271
272 return null;
273 }
274
275 private consumeAMatchToken(): '*=' | '$=' | '|=' | '~=' | '^=' | null {
276 if (this.text[this.nextInputCodePointIndex + 1] === '=') {

Callers 1

consumeATokenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected