This commit is contained in:
Dmitry Jemerov
2009-09-10 20:43:40 +04:00
parent e9214df509
commit f9dbab8f6d
149 changed files with 7 additions and 0 deletions
@@ -0,0 +1,11 @@
class Mapping {
private int myInt;
public void <caret>method(boolean b, int i, char c, double d, int[] ia, String s) {
myInt = b ? i + c - (int)d: ia.length + s.hashCode();
}
public void context() {
myInt = true || false ? 5 + 'z' - (int)3.14 : new int[] { 0, 1 }.length + "abc".hashCode();
}
}