All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.debugger.SetScriptSourceResult Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.debugger;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.runtime.ExceptionDetails;
import com.hubspot.chrome.devtools.client.core.runtime.StackTrace;
import com.hubspot.chrome.devtools.client.core.runtime.StackTraceId;
import java.util.List;

public final class SetScriptSourceResult {
  public List callFrames;

  public Boolean stackChanged;

  public StackTrace asyncStackTrace;

  public StackTraceId asyncStackTraceId;

  public ExceptionDetails exceptionDetails;

  @JsonCreator
  SetScriptSourceResult(@JsonProperty("callFrames") List callFrames,
      @JsonProperty("stackChanged") Boolean stackChanged,
      @JsonProperty("asyncStackTrace") StackTrace asyncStackTrace,
      @JsonProperty("asyncStackTraceId") StackTraceId asyncStackTraceId,
      @JsonProperty("exceptionDetails") ExceptionDetails exceptionDetails) {
    this.callFrames = callFrames;
    this.stackChanged = stackChanged;
    this.asyncStackTrace = asyncStackTrace;
    this.asyncStackTraceId = asyncStackTraceId;
    this.exceptionDetails = exceptionDetails;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy