summaryrefslogtreecommitdiff
path: root/sources/scala/tools/nsc/CompilationUnits.scala
blob: e0793a6d9cc2b79aa43f8c9593b7d0b334bd8bdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* NSC -- new scala compiler
 * Copyright 2005 LAMP/EPFL
 * @author  Martin Odersky
 */
// $Id$
package scala.tools.nsc;

import scala.tools.nsc.util.{SourceFile, Position};
import scala.tools.nsc.util.FreshNameCreator;

[_trait_] abstract class CompilationUnits: Global {

  class CompilationUnit(val source: SourceFile, val mixinOnly: boolean) {

    /** short constructor */
    def this(source: SourceFile) = this(source, false);

    /** the fresh name creator */
    val fresh = new FreshNameCreator;

    /** the content of the compilation unit in tree form */
    var body: Tree = EmptyTree;

    def position(pos: int) = new Position(source, pos);

    def error(pos: int, msg: String) = reporter.error(position(pos), msg);
    def warning(pos: int, msg: String) = reporter.warning(position(pos), msg);
    override def toString() = source.toString();

  }
}