package scala.tools.nsc
import util.{ FreshNameCreator,Position,NoPosition,SourceFile }
import scala.collection.mutable.{ LinkedHashSet, HashSet, HashMap, ListBuffer }
trait CompilationUnits { self: Global =>
class CompilationUnit(val source: SourceFile) extends CompilationUnitTrait {
var fresh: FreshNameCreator = new FreshNameCreator.Default
def freshTermName(prefix: String): TermName = newTermName(fresh.newName(prefix))
def freshTypeName(prefix: String): TypeName = newTypeName(fresh.newName(prefix))
var body: Tree = EmptyTree
case class Comment(text: String, pos: Position)
val comments = new ListBuffer[Comment]
val depends = new HashSet[Symbol]
val defined = new HashSet[Symbol]
val synthetics = new HashMap[Symbol, Tree]
val toCheck = new ListBuffer[() => Unit]
def position(pos: Int) = source.position(pos)
def targetPos: Position = NoPosition
val icode: LinkedHashSet[icodes.IClass] = new LinkedHashSet
def error(pos: Position, msg: String) =
reporter.error(pos, msg)
def warning(pos: Position, msg: String) =
reporter.warning(pos, msg)
def deprecationWarning(pos: Position, msg: String) =
if (opt.deprecation) warning(pos, msg)
else currentRun.deprecationWarnings += 1
def uncheckedWarning(pos: Position, msg: String) =
if (opt.unchecked) warning(pos, msg)
else currentRun.uncheckedWarnings += 1
def incompleteInputError(pos: Position, msg:String) =
reporter.incompleteInputError(pos, msg)
def comment(pos: Position, msg: String) =
reporter.comment(pos, msg)
lazy val isJava = source.file.name.endsWith(".java")
override def toString() = source.toString()
def clear() {
fresh = null
body = null
depends.clear
defined.clear
}
}
}