MCPcopy Create free account
hub / github.com/Tampermonkey/tampermonkey / forspec1

Function forspec1

src/cm/javascript.js:331–336  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

329 if (type == ",") return cont(vardef1);
330 }
331 function forspec1(type) {
332 if (type == "var") return cont(vardef1, expect(";"), forspec2);
333 if (type == ";") return cont(forspec2);
334 if (type == "variable") return cont(formaybein);
335 return cont(forspec2);
336 }
337 function formaybein(type, value) {
338 if (value == "in") return cont(expression);
339 return cont(maybeoperator, forspec2);

Callers

nothing calls this directly

Calls 2

contFunction · 0.85
expectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…