diff --git a/java/debugger/impl/src/com/intellij/debugger/impl/JavaEditorTextProviderImpl.java b/java/debugger/impl/src/com/intellij/debugger/impl/JavaEditorTextProviderImpl.java index 3fa33aabd945..8201a0697e01 100644 --- a/java/debugger/impl/src/com/intellij/debugger/impl/JavaEditorTextProviderImpl.java +++ b/java/debugger/impl/src/com/intellij/debugger/impl/JavaEditorTextProviderImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2011 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,6 +111,11 @@ public class JavaEditorTextProviderImpl implements EditorTextProvider { else if (parent instanceof PsiThisExpression) { expression = parent; } + else if (parent instanceof PsiExpressionList && parent.getParent() instanceof PsiMethodCallExpression) { + if (allowMethodCalls) { + expression = parent.getParent(); + } + } else if (parent instanceof PsiArrayInitializerExpression) { if (allowMethodCalls) { PsiNewExpression newExpr = PsiTreeUtil.getParentOfType(element, PsiNewExpression.class);