entlicher commented on a change in pull request #2643:
URL: https://github.com/apache/netbeans/pull/2643#discussion_r553263944
##########
File path:
java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/frames/TruffleStackInfo.java
##########
@@ -41,19 +41,21 @@
public final class TruffleStackInfo {
private static final String METHOD_GET_FRAMES_INFO = "getFramesInfo";
// NOI18N
- private static final String METHOD_GET_FRAMES_INFO_SIG =
"([Lcom/oracle/truffle/api/debug/DebugStackFrame;Z)[Ljava/lang/Object;"; //
NOI18N
+ private static final String METHOD_GET_FRAMES_INFO_SIG =
"([Lcom/oracle/truffle/api/debug/DebugStackFrame;ZZ)[Ljava/lang/Object;"; //
NOI18N
private final JPDADebugger debugger;
private final JPDAThread thread;
private final ObjectVariable stackTrace;
+ private final boolean supportsJavaFrames;
private TruffleStackFrame[] stackFrames;
private boolean includedInternalFrames;
private boolean areInternalFrames;
- public TruffleStackInfo(JPDADebugger debugger, JPDAThread thread,
ObjectVariable stackTrace) {
+ public TruffleStackInfo(JPDADebugger debugger, JPDAThread thread,
ObjectVariable stackTrace, boolean supportsJavaFrames) {
Review comment:
Fixed.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists