blob: 6a30f525b2f10362031552aef86977764fb5d212 [file] [log] [blame]
// LocalsOrMyInstanceFieldsControlFlowPolicy
class ExceptionTestCase {
public String getIndexingLexer(final boolean file, boolean b1, boolean b2) {<caret>
String highlighter;
if (file && b1 && b2) {
highlighter = "then";
}
else {
highlighter = "else";
}
return highlighter;
}
}