summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-03-27 13:34:36 +0000
committerMartin Odersky <odersky@gmail.com>2006-03-27 13:34:36 +0000
commiteccdddcc73dc532885abaee500e1b35953723d5a (patch)
treeac87a68be1d9325a58a5ccbb198bd58001f0cf5d /src/compiler/scala/tools/nsc/typechecker/Contexts.scala
parentd0d3ec60983897a0d7b54b8fc74acb1adffa2e18 (diff)
downloadscala-eccdddcc73dc532885abaee500e1b35953723d5a.tar.gz
scala-eccdddcc73dc532885abaee500e1b35953723d5a.tar.bz2
scala-eccdddcc73dc532885abaee500e1b35953723d5a.zip
1.
2. Cleaned up search of implicit names to make it conformant to the spec. 3. Made Sean's SOURCE CHANGE messages dependent on option -debug.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Contexts.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Contexts.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
index d4833ba155..11d2aa2a3e 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
@@ -340,5 +340,7 @@ trait Contexts requires Analyzer {
case class ImplicitInfo(val name: Name, val tpe: Type, val sym: Symbol);
+ val NoImplicitInfo = ImplicitInfo(null, null, null)
+
case class ImportType(expr: Tree) extends Type;
}