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

dotty.tools.xsbt.WorkspaceEdit Maven / Gradle / Ivy

There is a newer version: 3.7.2-RC1-bin-20250528-457a463-NIGHTLY
Show newest version
package dotty.tools.xsbt;

import java.util.List;

import xsbti.TextEdit;

final public class WorkspaceEdit implements xsbti.WorkspaceEdit {

  private final List _changes;

  public WorkspaceEdit(List changes) {
    super();
    this._changes = changes;
  }

  public List changes() {
    return _changes;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy