aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java')
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java
deleted file mode 100644
index d8afbf5f6..000000000
--- a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SourcePosition.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package dotty.tools.dotc.interfaces;
-
-/** A position in a source file.
- *
- * A position is a range between a start offset and an end offset, as well as a
- * point inside this range.
- *
- * As a convenience, we also provide methods that return the line and the column
- * corresponding to each offset.
- *
- * User code should not implement this interface, but it may have to
- * manipulate objects of this type.
- */
-public interface SourcePosition {
- /** @return Content of the line which contains the point */
- String lineContent();
-
- /** @return Offset to the point */
- int point();
- /** @return Line number of the point, starting at 0 */
- int line();
- /** @return Column number of the point, starting at 0 */
- int column();
-
- /** @return Offset to the range start */
- int start();
- /** @return Line number of the range start, starting at 0 */
- int startLine();
- /** @return Column number of the range start, starting at 0 */
- int startColumn();
-
- /** @return Offset to the range end */
- int end();
- /** @return Line number of the range end, starting at 0 */
- int endLine();
- /** @return Column number of the range end, starting at 0 */
- int endColumn();
-
- /** The source file corresponding to this position.
- * The values returned by `point()`, `start()` and `end()`
- * are indices in the array returned by `source().content()`.
- * @return source file for this position
- */
- SourceFile source();
-}