aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/main/java/dotty/tools/dotc/interfaces/SourceFile.java
blob: 5611d388587d442a2184976a860d33f7ca618115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package dotty.tools.dotc.interfaces;

import java.io.File;

/** A source file.
 *
 *  User code should not implement this interface, but it may have to
 *  manipulate objects of this type.
 */
public interface SourceFile extends AbstractFile {
  /** The content of this file as seen by the compiler. */
  char[] content();
}