Class Debugger.SetScriptSourceResponse

  • Enclosing class:
    Debugger

    public static class Debugger.SetScriptSourceResponse
    extends java.lang.Object
    • Method Detail

      • getCallFrames

        public java.util.Optional<java.util.List<CallFrame>> getCallFrames()
        New stack trace in case editing has happened while VM was stopped.
      • getStackChanged

        public java.util.Optional<java.lang.Boolean> getStackChanged()
        Whether current call stack was modified after applying the changes.
      • getAsyncStackTrace

        public java.util.Optional<StackTrace> getAsyncStackTrace()
        Async stack trace, if any.
      • getAsyncStackTraceId

        public java.util.Optional<StackTraceId> getAsyncStackTraceId()
        Async stack trace, if any.
      • getStatus

        public Debugger.SetScriptSourceResponse.Status getStatus()
        Whether the operation was successful or not. Only `Ok` denotes a successful live edit while the other enum variants denote why the live edit failed.
      • getExceptionDetails

        public java.util.Optional<ExceptionDetails> getExceptionDetails()
        Exception details if any. Only present when `status` is `CompileError`.