Showing 6,856 of 14,752 total issues
Avoid too many return
statements within this function. Open
Open
else if (value == "type") return cont(typename, expect("operator"), typeexpr, expect(";"));
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return new Context(context.prev, new Var(varname, context.vars), false)
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return cont(pushlex("stat"), maybelabel);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
else { stream.skipToEnd(); return "error"; }
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return cont(statement)
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return null;
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "{") return contCommasep(objprop, "}", null, maybeop);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "import") return cont(expression);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (value == "enum") return cont(enumdef);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return ret("operator", "operator", stream.current());
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return cont(expr);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return cont(pushlex("form"), expression, statement, poplex)
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
else return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex)
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (value == "?") return cont(typeexpr, expect(":"), typeexpr)
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "import") return cont(pushlex("stat"), afterImport, poplex);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "switch") return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"), pushblockcontext,
block, poplex, poplex, popcontext);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return cont(afterprop);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "new") return cont(maybeTarget(noComma));
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
- Create a ticketCreate a ticket