mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
detect parenthesis in method calls during debugger quick evaluation
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user