You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/EvaluateRequestHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ public CompletableFuture<Response> handle(Command command, Arguments arguments,
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/ScopesRequestHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ public CompletableFuture<Response> handle(Command command, Arguments arguments,
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/SetVariableRequestHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ public CompletableFuture<Response> handle(Command command, Arguments arguments,
121
121
if (newValueinstanceofObjectReference && VariableUtils.hasChildren(newValue, showStaticVariables)) {
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/VariablesRequestHandler.java
+9-2
Original file line number
Diff line number
Diff line change
@@ -237,14 +237,21 @@ public CompletableFuture<Response> handle(Command command, Arguments arguments,
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/variables/VariableProxy.java
+16-1
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,15 @@
13
13
14
14
importjava.util.Objects;
15
15
16
+
importcom.sun.jdi.ArrayReference;
16
17
importcom.sun.jdi.ThreadReference;
17
18
18
19
publicclassVariableProxy {
19
20
privatefinalThreadReferencethread;
20
21
privatefinalStringscopeName;
21
22
privateObjectvariable;
22
23
privateinthashCode;
24
+
privatefinalStringevaluateName;
23
25
24
26
/**
25
27
* Create a variable reference.
@@ -29,11 +31,20 @@ public class VariableProxy {
29
31
* the scope name
30
32
* @param variable
31
33
* the variable object
34
+
* @param container
35
+
* the variable container, if any
36
+
* @param evaluateName
37
+
* the variable evaluate name for the container context, if any
Copy file name to clipboardExpand all lines: com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/variables/VariableUtils.java
0 commit comments