IG: make ExpressionUtils.resolveLocalVariable() skip parentheses

This commit is contained in:
Bas Leijdekkers
2019-03-08 11:32:41 +01:00
parent afb39182bb
commit 27c17db32b
12 changed files with 19 additions and 48 deletions
@@ -2,7 +2,7 @@ class Foo {
void test() {
StringBuilder sb;
<caret>sb = new StringBuilder();
sb.append("foo");
(sb).append("foo");
sb.append("bar");
sb.append("baz");
}