moved to community

This commit is contained in:
Alexey Kudravtsev
2011-07-07 14:49:20 +04:00
parent 23d1e25d34
commit f3631279a7
49 changed files with 766 additions and 0 deletions
@@ -0,0 +1,15 @@
// 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;
}
}