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

Method consumeCDO

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

Source from the content-addressed store, hash-verified

253 }
254
255 private consumeCDO(): '<!--' | null {
256 if (this.text.substr(this.nextInputCodePointIndex, 4) === '<!--') {
257 this.nextInputCodePointIndex += 4;
258
259 return '<!--';
260 }
261
262 return null;
263 }
264
265 private consumeCDC(): '-->' | null {
266 if (this.text.substr(this.nextInputCodePointIndex, 3) === '-->') {

Callers 1

consumeATokenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected