summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-04 04:54:35 +0000
committerPaul Phillips <paulp@improving.org>2011-01-04 04:54:35 +0000
commit7c34a1af9612cc696fef9f4d62d1a9a9ef8ff9ae (patch)
tree554896cc74c2ac36dc7723b4aadb7849f63d8482 /src/compiler/scala/tools/nsc/typechecker/Contexts.scala
parentc0a4e5acdc23bbfae3d4035b7922f3f3841cc822 (diff)
downloadscala-7c34a1af9612cc696fef9f4d62d1a9a9ef8ff9ae.tar.gz
scala-7c34a1af9612cc696fef9f4d62d1a9a9ef8ff9ae.tar.bz2
scala-7c34a1af9612cc696fef9f4d62d1a9a9ef8ff9ae.zip
Protected protected constructors.
since r19547, which was for #1836 but loosened the noose too much. Closes #4128, review by odersky.
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, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
index 7f0be68fca..0aeea8174a 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
@@ -371,6 +371,7 @@ trait Contexts { self: Analyzer =>
*/
def isAccessible(sym: Symbol, pre: Type, superAccess: Boolean): Boolean = {
lastAccessCheckDetails = ""
+ // Console.println("isAccessible(%s, %s, %s)".format(sym, pre, superAccess))
@inline def accessWithinLinked(ab: Symbol) = {
val linked = ab.linkedClassOfClass
@@ -445,7 +446,6 @@ trait Contexts { self: Analyzer =>
|| sym.isProtected &&
( superAccess
|| pre.isInstanceOf[ThisType]
- || sym.isConstructor
|| phase.erasedTypes
|| isProtectedAccessOK(sym)
|| (sym.allOverriddenSymbols exists isProtectedAccessOK)