1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
import java.util.regex.Pattern;
import org.checkerframework.checker.regex.RegexUtil;
class Continue {
void test1(String[] a) {
for (String s : a) {
if (!RegexUtil.isRegex(s)) {
continue;
}
Pattern.compile(s);
}
}
void test2(String[] a, boolean b) {
for (String s : a) {
if (!RegexUtil.isRegex(s)) {
continue;
} else if (b) {
continue;
}
Pattern.compile(s);
}
}
// Reverse the if statements from the previous test.
void test3(String[] a, boolean b) {
for (String s : a) {
if (b) {
continue;
} else if (!RegexUtil.isRegex(s)) {
continue;
}
Pattern.compile(s);
}
}
void twoThrows(String s) {
if (s == null) {
throw new RuntimeException();
} else if (!RegexUtil.isRegex(s)) {
throw new RuntimeException();
}
Pattern.compile(s);
}
void twoReturns(String s) {
if (s == null) {
return;
} else if (!RegexUtil.isRegex(s)) {
return;
}
Pattern.compile(s);
}
}
|