MCPcopy Index your code
hub / github.com/JavaScriptRegenerated/yieldparser / RulesParser

Function RulesParser

src/index.test.ts:426–435  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

424 }
425
426 function* RulesParser(): ParseGenerator<Array<Rule>> {
427 const rules: Array<Rule> = [];
428
429 yield whitespaceMay;
430 while (yield hasMore) {
431 rules.push(yield RuleParser);
432 yield whitespaceMay;
433 }
434 return rules;
435 }
436
437 const code = `
438 :root {

Callers 1

index.test.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected