MCPcopy
hub / github.com/Tampermonkey/tampermonkey / style_pattern

Function style_pattern

src/jslint.js:5552–5566  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5550 }
5551
5552 function style_pattern() {
5553 if (next_token.id === '{') {
5554 warn('expected_style_pattern');
5555 }
5556 for (;;) {
5557 style_selector();
5558 if (next_token.id === '</' || next_token.id === '{' ||
5559 next_token.id === '}' || next_token.id === '(end)') {
5560 return '';
5561 }
5562 if (next_token.id === ',') {
5563 comma();
5564 }
5565 }
5566 }
5567
5568 function style_list() {
5569 while (next_token.id !== '}' && next_token.id !== '</' &&

Callers 1

style_listFunction · 0.85

Calls 3

warnFunction · 0.85
style_selectorFunction · 0.85
commaFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…