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.scala8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/dotty/tools/dotc/CompilationUnit.scala b/src/dotty/tools/dotc/CompilationUnit.scala
index 16a59250b..491c2bd9b 100644
--- a/src/dotty/tools/dotc/CompilationUnit.scala
+++ b/src/dotty/tools/dotc/CompilationUnit.scala
@@ -17,12 +17,8 @@ class CompilationUnit(val source: SourceFile) {
def isJava = source.file.name.endsWith(".java")
- /**
- * Picklers used to create TASTY sections, indexed by toplevel class to which they belong.
- * Sections: Header, ASTs and Positions are populated by `pickler` phase.
- * Subsequent phases can add new sections.
- */
- var picklers: Map[ClassSymbol, TastyPickler] = Map()
+ /** Pickled TASTY binaries, indexed by class. */
+ var pickled: Map[ClassSymbol, Array[Byte]] = Map()
var unpicklers: Map[ClassSymbol, TastyUnpickler] = Map()
}