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

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

There is a newer version: 3.7.2-RC1-bin-20250528-457a463-NIGHTLY
Show newest version
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