Showing 278 of 361 total issues
Avoid too many return
statements within this function. Open
Open
if (state.inlinePairs == 0 && stream.match(/^\s*-?[0-9\.\,]+\s?$/)) { return 'number'; }
Avoid too many return
statements within this function. Open
Open
if (state.pair && stream.match(/^:\s*/)) { state.pairStart = true; return 'meta'; }
Avoid too many return
statements within this function. Open
Open
return "arrow";
Avoid too many return
statements within this function. Open
Open
return ERRORCLASS;
Avoid too many return
statements within this function. Open
Open
return CodeMirror.Pass;
Avoid too many return
statements within this function. Open
Open
return false;
Avoid too many return
statements within this function. Open
Open
return tokenCComment(stream, state);
Avoid too many return
statements within this function. Open
Open
return chain(readQuoted(delim, style, embed, true), stream, state);
Avoid too many return
statements within this function. Open
Open
else if ((ch == "~" || ch == "|") && stream.eat("=")) return ret(null, "compare");
Avoid too many return
statements within this function. Open
Open
return true;
Avoid too many return
statements within this function. Open
Open
return "atom";
Avoid too many return
statements within this function. Open
Open
return "atom";
Avoid too many return
statements within this function. Open
Open
return 'keyword';
Avoid too many return
statements within this function. Open
Open
return 'builtin';
Avoid too many return
statements within this function. Open
Open
return tokenSGMLComment(stream, state);
Avoid too many return
statements within this function. Open
Open
return "ident";
Avoid too many return
statements within this function. Open
Open
return 'number';
Avoid too many return
statements within this function. Open
Open
if (stream.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i)) { return 'variable-2'; }
Avoid too many return
statements within this function. Open
Open
if (state.inlinePairs > 0 && stream.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/)) { return 'number'; }
Avoid too many return
statements within this function. Open
Open
return 'operator';