Merge remote-tracking branch 'origin/master'

This commit is contained in:
Roman Shevchenko
2016-10-14 19:08:58 +02:00
146 changed files with 2933 additions and 1076 deletions
@@ -1,5 +1,5 @@
public class Foo {
void m(Object o) {
int foo = 1;<caret>
int <caret>foo = 1;
}
}
@@ -0,0 +1,7 @@
public class Foo {
void m() {
foo(new Runnable() {public void run()}.var<caret>);
}
void foo(Runnable r) {}
}
@@ -0,0 +1,9 @@
public class Foo {
void m() {
Runnable foo = new Runnable() {
public void run()
}; foo(foo);
}
void foo(Runnable r) {}
}
@@ -1,5 +1,5 @@
public class Foo {
void m(Object o) {
boolean foo = o instanceof String;<caret>
boolean <caret>foo = o instanceof String;
}
}