aboutsummaryrefslogblamecommitdiff
path: root/interfaces/src/dotty/tools/dotc/interfaces/SourceFile.java
blob: 6c72a5125b0dc47715918a7dc2f6be6acad5e37e (plain) (tree)
1
2
3
4
5
6
7
8
9

                                    





                                                                     
                                                                  

                   
package dotty.tools.dotc.interfaces;

/** 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 {
  /** @return The content of this file as seen by the compiler. */
  char[] content();
}