@@ -153,11 +153,11 @@ package object expressions {
153153 }
154154
155155 /** Returns true if all qualifiers in `attrs` have 2 or less parts. */
156- @ transient private val hasTwoOrLessPartQualifiers : Boolean =
156+ @ transient private val hasTwoOrLessQualifierParts : Boolean =
157157 attrs.forall(_.qualifier.length <= 2 )
158158
159159 /** Match attributes for the case where all qualifiers in `attrs` have 2 or less parts. */
160- private def matchWithTwoOrLessPartQualifiers (
160+ private def matchWithTwoOrLessQualifierParts (
161161 nameParts : Seq [String ],
162162 resolver : Resolver ): (Seq [Attribute ], Seq [String ]) = {
163163 // Collect matching attributes given a name and a lookup.
@@ -221,7 +221,7 @@ package object expressions {
221221 /**
222222 * Match attributes for the case where at least one qualifier in `attrs` has more than 2 parts.
223223 */
224- private def matchWithThreeOrMorePartQualifiers (
224+ private def matchWithThreeOrMoreQualifierParts (
225225 nameParts : Seq [String ],
226226 resolver : Resolver ): (Seq [Attribute ], Seq [String ]) = {
227227 // Returns true if the `short` qualifier is a subset of the last elements of
@@ -277,10 +277,10 @@ package object expressions {
277277
278278 /** Perform attribute resolution given a name and a resolver. */
279279 def resolve (nameParts : Seq [String ], resolver : Resolver ): Option [NamedExpression ] = {
280- val (candidates, nestedFields) = if (hasTwoOrLessPartQualifiers ) {
281- matchWithTwoOrLessPartQualifiers (nameParts, resolver)
280+ val (candidates, nestedFields) = if (hasTwoOrLessQualifierParts ) {
281+ matchWithTwoOrLessQualifierParts (nameParts, resolver)
282282 } else {
283- matchWithThreeOrMorePartQualifiers (nameParts, resolver)
283+ matchWithThreeOrMoreQualifierParts (nameParts, resolver)
284284 }
285285
286286 def name = UnresolvedAttribute (nameParts).name
0 commit comments