aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-06-19 18:30:58 +0200
committerMartin Odersky <odersky@gmail.com>2015-06-19 18:31:18 +0200
commit76a056f5e1ea01b3cfdc8832e2a164562da770ab (patch)
tree81b20e1e067ca3d0cd3bfde5924903b180cf7cc4
parentc54debead6d12527469b9d69f4ab0d54cc13f7e9 (diff)
downloaddotty-76a056f5e1ea01b3cfdc8832e2a164562da770ab.tar.gz
dotty-76a056f5e1ea01b3cfdc8832e2a164562da770ab.tar.bz2
dotty-76a056f5e1ea01b3cfdc8832e2a164562da770ab.zip
Refactor viewExists
Factor out isValueSubClass into separate method. Will probably come in handly elsewhere, and makes the code easier to understand.
-rw-r--r--src/dotty/tools/dotc/core/Types.scala13
-rw-r--r--src/dotty/tools/dotc/typer/Implicits.scala19
2 files changed, 17 insertions, 15 deletions
diff --git a/src/dotty/tools/dotc/core/Types.scala b/src/dotty/tools/dotc/core/Types.scala
index ba39e7bef..af66257fd 100644
--- a/src/dotty/tools/dotc/core/Types.scala
+++ b/src/dotty/tools/dotc/core/Types.scala
@@ -601,6 +601,19 @@ object Types {
ctx.typeComparer.isSameType(this, that)
}
+ /** Is this type a primitive value type which can be widened to the primitive value type `to`? */
+ def isValueSubType(that: Type)(implicit ctx: Context) = widenExpr match {
+ case self: TypeRef if defn.ScalaValueClasses contains self.symbol =>
+ that.widenExpr match {
+ case that: TypeRef if defn.ScalaValueClasses contains that.symbol =>
+ defn.isValueSubClass(self.symbol, that.symbol)
+ case _ =>
+ false
+ }
+ case _ =>
+ false
+ }
+
/** Is this type a legal type for a member that overrides another
* member of type `that`? This is the same as `<:<`, except that
* the types ()T and => T are identified, and T is seen as overriding
diff --git a/src/dotty/tools/dotc/typer/Implicits.scala b/src/dotty/tools/dotc/typer/Implicits.scala
index 841390ef1..43d93b2b8 100644
--- a/src/dotty/tools/dotc/typer/Implicits.scala
+++ b/src/dotty/tools/dotc/typer/Implicits.scala
@@ -382,21 +382,10 @@ trait Implicits { self: Typer =>
&& !to.isError
&& !ctx.isAfterTyper
&& (ctx.mode is Mode.ImplicitsEnabled)
- && { from.widenExpr match {
- case from: TypeRef if defn.ScalaValueClasses contains from.symbol =>
- to.widenExpr match {
- case to: TypeRef if defn.ScalaValueClasses contains to.symbol =>
- util.Stats.record("isValueSubClass")
- return defn.isValueSubClass(from.symbol, to.symbol)
- case _ =>
- }
- case from: ValueType =>
- ;
- case _ =>
- return false
- }
- inferView(dummyTreeOfType(from), to)(ctx.fresh.setExploreTyperState).isInstanceOf[SearchSuccess]
- }
+ && from.isInstanceOf[ValueType]
+ && ( from.isValueSubType(to)
+ || inferView(dummyTreeOfType(from), to)(ctx.fresh.setExploreTyperState).isInstanceOf[SearchSuccess]
+ )
)
/** Find an implicit conversion to apply to given tree `from` so that the