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

Method consumeAtKeyword

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

Source from the content-addressed store, hash-verified

447 }
448
449 private consumeAtKeyword(): InputTokenObject {
450 this.nextInputCodePointIndex++;
451 const name = this.consumeAName();
452 if (name) {
453 return { type: TokenObjectType.atKeyword, text: name.text };
454 }
455 this.nextInputCodePointIndex--;
456
457 return null;
458 }
459
460 private consumeAComment(): InputToken {
461 if (this.text[this.nextInputCodePointIndex + 1] === '*') {

Callers 1

consumeATokenMethod · 0.95

Calls 1

consumeANameMethod · 0.95

Tested by

no test coverage detected