MCPcopy
hub / github.com/PaulTaykalo/objc-dependency-visualizer / statements

Function statements

Scripts/ace/worker-javascript.js:3925–3942  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3923
3924
3925 function statements() {
3926 var a = [], p;
3927
3928 while (!state.tokens.next.reach && state.tokens.next.id !== "(end)") {
3929 if (state.tokens.next.id === ";") {
3930 p = peek();
3931
3932 if (!p || (p.id !== "(" && p.id !== "[")) {
3933 warning("W032");
3934 }
3935
3936 advance(";");
3937 } else {
3938 a.push(statement());
3939 }
3940 }
3941 return a;
3942 }
3943 function directives() {
3944 var i, p, pn;
3945

Callers 4

blockFunction · 0.85
itselfFunction · 0.85

Calls 4

peekFunction · 0.85
warningFunction · 0.85
advanceFunction · 0.85
statementFunction · 0.85

Tested by

no test coverage detected