aboutsummaryrefslogtreecommitdiff
path: root/src/dotty
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-11-30 08:48:03 +0100
committerGuillaume Martres <smarter@ubuntu.com>2015-11-30 17:31:32 +0100
commit559801288d96a28e84f4b79c9033b507416caa90 (patch)
treef5546769d893448ded7b353f87c35c530a91de58 /src/dotty
parente77428eb0bf0d9f68f4055d686cbabe111a4afdf (diff)
downloaddotty-559801288d96a28e84f4b79c9033b507416caa90.tar.gz
dotty-559801288d96a28e84f4b79c9033b507416caa90.tar.bz2
dotty-559801288d96a28e84f4b79c9033b507416caa90.zip
Fixed comments
Diffstat (limited to 'src/dotty')
-rw-r--r--src/dotty/tools/dotc/core/TypeApplications.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/dotty/tools/dotc/core/TypeApplications.scala b/src/dotty/tools/dotc/core/TypeApplications.scala
index a023322ac..3d9ffb0bb 100644
--- a/src/dotty/tools/dotc/core/TypeApplications.scala
+++ b/src/dotty/tools/dotc/core/TypeApplications.scala
@@ -369,7 +369,6 @@ class TypeApplications(val self: Type) extends AnyVal {
/** If this is an encoding of a (partially) applied type, return its arguments,
* otherwise return Nil.
* Existential types in arguments are returned as TypeBounds instances.
- * @param interpolate See argInfo
*/
final def argInfos(implicit ctx: Context): List[Type] = {
var tparams: List[TypeSymbol] = null
@@ -415,16 +414,6 @@ class TypeApplications(val self: Type) extends AnyVal {
/** If this is the image of a type argument to type parameter `tparam`,
* recover the type argument, otherwise NoType.
- * @param interpolate If true, replace type bounds as arguments corresponding to
- * variant type parameters by their dominating element. I.e. an argument
- *
- * T <: U
- *
- * for a covariant type-parameter becomes U, and an argument
- *
- * T >: L
- *
- * for a contravariant type-parameter becomes L.
*/
final def argInfo(implicit ctx: Context): Type = self match {
case self: TypeAlias => self.alias