MCPcopy Index your code
hub / github.com/Macuyiko/minecraft-python / statements

Function statements

ServerEditorWeb/ace/worker-javascript.js:3768–3785  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3766
3767
3768 function statements() {
3769 var a = [], p;
3770
3771 while (!state.tokens.next.reach && state.tokens.next.id !== "(end)") {
3772 if (state.tokens.next.id === ";") {
3773 p = peek();
3774
3775 if (!p || (p.id !== "(" && p.id !== "[")) {
3776 warning("W032");
3777 }
3778
3779 advance(";");
3780 } else {
3781 a.push(statement());
3782 }
3783 }
3784 return a;
3785 }
3786 function directives() {
3787 var i, p, pn;
3788

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