aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/CompilationUnit.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/CompilationUnit.scala')
-rw-r--r--src/dotty/tools/dotc/CompilationUnit.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/dotty/tools/dotc/CompilationUnit.scala b/src/dotty/tools/dotc/CompilationUnit.scala
deleted file mode 100644
index 491c2bd9b..000000000
--- a/src/dotty/tools/dotc/CompilationUnit.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-package dotty.tools
-package dotc
-
-import dotty.tools.dotc.core.Types.Type
-import dotty.tools.dotc.core.tasty.{TastyUnpickler, TastyBuffer, TastyPickler}
-import util.SourceFile
-import ast.{tpd, untpd}
-import dotty.tools.dotc.core.Symbols._
-
-class CompilationUnit(val source: SourceFile) {
-
- override def toString = source.toString
-
- var untpdTree: untpd.Tree = untpd.EmptyTree
-
- var tpdTree: tpd.Tree = tpd.EmptyTree
-
- def isJava = source.file.name.endsWith(".java")
-
- /** Pickled TASTY binaries, indexed by class. */
- var pickled: Map[ClassSymbol, Array[Byte]] = Map()
-
- var unpicklers: Map[ClassSymbol, TastyUnpickler] = Map()
-}