aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/sbt
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-06-29 19:59:16 +0200
committerMartin Odersky <odersky@gmail.com>2016-07-11 13:35:02 +0200
commitd1f809f14cad2c14c312767d71361c7f2e7d8244 (patch)
treea929f8d6c9700acfc5ae031fdda6bb0852c9726e /src/dotty/tools/dotc/sbt
parente749d832e9adebc502c961d743b3b29072f8116a (diff)
downloaddotty-d1f809f14cad2c14c312767d71361c7f2e7d8244.tar.gz
dotty-d1f809f14cad2c14c312767d71361c7f2e7d8244.tar.bz2
dotty-d1f809f14cad2c14c312767d71361c7f2e7d8244.zip
Remove old hk scheme
- Simplify RefinedType - Drop recursive definition of RefinedThis - this is now taken over by RecType. - Drop RefinedThis. - Simplify typeParams The logic avoiding forcing is no longer needed. - Remove unused code and out of date comments.
Diffstat (limited to 'src/dotty/tools/dotc/sbt')
-rw-r--r--src/dotty/tools/dotc/sbt/ExtractAPI.scala4
-rw-r--r--src/dotty/tools/dotc/sbt/ExtractDependencies.scala3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/sbt/ExtractAPI.scala b/src/dotty/tools/dotc/sbt/ExtractAPI.scala
index c0a3c3dfe..d4b38c66e 100644
--- a/src/dotty/tools/dotc/sbt/ExtractAPI.scala
+++ b/src/dotty/tools/dotc/sbt/ExtractAPI.scala
@@ -403,8 +403,8 @@ private class ExtractAPICollector(implicit val ctx: Context) extends ThunkHolder
apiType(tpe)
case tp: ThisType =>
apiThis(tp.cls)
- case RefinedThis(binder) =>
- apiThis(binder.typeSymbol)
+ case RecThis(binder) =>
+ apiThis(binder.typeSymbol) // !!! this is almost certainly wrong !!!
case tp: ParamType =>
new api.ParameterRef(tp.paramName.toString)
case tp: LazyRef =>
diff --git a/src/dotty/tools/dotc/sbt/ExtractDependencies.scala b/src/dotty/tools/dotc/sbt/ExtractDependencies.scala
index 1f19a1058..026a518ce 100644
--- a/src/dotty/tools/dotc/sbt/ExtractDependencies.scala
+++ b/src/dotty/tools/dotc/sbt/ExtractDependencies.scala
@@ -163,8 +163,7 @@ private class ExtractDependenciesCollector(implicit val ctx: Context) extends tp
sym.eq(NoSymbol) ||
sym.isEffectiveRoot ||
sym.isAnonymousFunction ||
- sym.isAnonymousClass ||
- sym.isLambdaTraitOBS
+ sym.isAnonymousClass
private def addInheritanceDependency(sym: Symbol): Unit =
_topLevelInheritanceDependencies += sym.topLevelClass