Showing 6,856 of 14,752 total issues
Avoid too many return
statements within this function. Open
Open
return ERRORCLASS;
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return "variable-2";
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return tokenComment(stream, state);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == ";") return cont();
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "case") return cont(expression, expect(":"));
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
statement, poplex, popcontext);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return pass(pushlex("stat"), expression, expect(";"), poplex);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeoperator);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (type == ".") return cont(property, maybeoperator);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
else return lexical.indented + (closing ? 0 : indentUnit);
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
if (state.lastToken == ".") return "property";
- 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 (stream.eat(":")) return "atom";
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return "meta";
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return state.tagStart + state.tagName.length + 2;
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return "number";
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return ERRORCLASS;
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return rval(state,stream,"fun"); // 'f'/0 style fun
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return rval(state,stream,"guard");
- Create a ticketCreate a ticket
Avoid too many return
statements within this function. Open
Open
return rval(state,stream,"open_paren");
- Create a ticketCreate a ticket