From b70cf1f40b36ec686c68f514579d71a44d09a0a3 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 18 Jul 2009 17:34:33 +0000 Subject: Fix and test case for #1373. --- src/compiler/scala/tools/nsc/symtab/Symbols.scala | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/compiler/scala/tools/nsc/symtab/Symbols.scala b/src/compiler/scala/tools/nsc/symtab/Symbols.scala index d5608dd334..b5b68a554d 100644 --- a/src/compiler/scala/tools/nsc/symtab/Symbols.scala +++ b/src/compiler/scala/tools/nsc/symtab/Symbols.scala @@ -1044,8 +1044,24 @@ trait Symbols { /** Return every accessor of a primary constructor parameter in this case class */ - final def caseFieldAccessors: List[Symbol] = - info.decls.toList filter (sym => !(sym hasFlag PRIVATE) && sym.hasFlag(CASEACCESSOR)) + final def caseFieldAccessors: List[Symbol] = { + val allAccessors = info.decls.toList filter (_ hasFlag CASEACCESSOR) + + // if a case class has private fields, the accessors will come back in the wrong + // order unless we do some more work. See ticket #1373 and test bug1373.scala. + def findRightAccessor(cpa: Symbol) = { + val toFind = cpa.fullNameString + "$" + // def fail = throw new Error("Accessor for %s not found among %s".format(cpa.fullNameString, allAccessors)) + def isRightAccessor(s: Symbol) = + if (s hasFlag ACCESSOR) s.accessed.id == cpa.id + else s.fullNameString startsWith toFind + + if (cpa.isOuterAccessor || cpa.isOuterField) None + else allAccessors find isRightAccessor + } + + constrParamAccessors map findRightAccessor flatten + } final def constrParamAccessors: List[Symbol] = info.decls.toList filter (sym => !sym.isMethod && sym.hasFlag(PARAMACCESSOR)) -- cgit v1.2.3