aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-05-22 18:56:31 +0200
committerMartin Odersky <odersky@gmail.com>2013-05-22 18:56:57 +0200
commit965a62d4a165da7e5a53c9afdba3175e10fe714b (patch)
tree9698567b21c4a6006aa5c1e3bdd7ba788706539b /src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
parentfd079d2f3335db7b54b0f78a4d884d9948a7beea (diff)
downloaddotty-965a62d4a165da7e5a53c9afdba3175e10fe714b.tar.gz
dotty-965a62d4a165da7e5a53c9afdba3175e10fe714b.tar.bz2
dotty-965a62d4a165da7e5a53c9afdba3175e10fe714b.zip
Made tpd/untpd toplevel objects.
Moved all other elements of TypedTrees and UntypedTrees into tpd and untpd.
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/ClassfileParser.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/ClassfileParser.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala b/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
index 9586b9436..8a790d760 100644
--- a/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
+++ b/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
@@ -5,7 +5,7 @@ package pickling
import Contexts._, Symbols._, Types._, Names._, StdNames._, NameOps._, Scopes._, Decorators._
import SymDenotations._, UnPickler._, Constants._, Annotations._, util.Positions._
-import ast.TypedTrees.tpd._
+import ast.tpd._
import java.io.{ File, IOException }
import java.lang.Integer.toHexString
import scala.collection.{ mutable, immutable }