
dotty.tools.xsbt.TextEdit 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 xsbti.Position;
final public class TextEdit implements xsbti.TextEdit {
private final Position _position;
private final String _newText;
public TextEdit(Position position, String newText) {
super();
this._position = position;
this._newText = newText;
}
public Position position() {
return _position;
}
public String newText() {
return _newText;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy