
dotty.tools.xsbt.WorkspaceEdit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-sbt-bridge Show documentation
Show all versions of scala3-sbt-bridge Show documentation
sbt compiler bridge for Dotty
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