blob: 07581180cc7ad20dbcb731178308e6899cced6e0 [file] [log] [blame]
class Mapping {
private int myInt;
public void <caret>method(int p1, boolean p2) {
myInt = p2 ? p1 : 0;
if (!p2) {
myInt *= p1;
}
}
public boolean sayYes() {
return true;
}
public void context() {
method(15 / 5, sayYes());
}
}