summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/reflect/api/Trees.scala11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/library/scala/reflect/api/Trees.scala b/src/library/scala/reflect/api/Trees.scala
index f1e9cc13ca..b82972c9bc 100644
--- a/src/library/scala/reflect/api/Trees.scala
+++ b/src/library/scala/reflect/api/Trees.scala
@@ -110,13 +110,12 @@ trait Trees { self: Universe =>
def withoutAttachment(att: Any): this.type = { detach(att); this }
def attachment[T: ClassTag]: T = attachmentOpt[T] getOrElse { throw new Error("no attachment of type %s".format(classTag[T].erasure)) }
def attachmentOpt[T: ClassTag]: Option[T] =
+ firstAttachment { case attachment if attachment.getClass == classTag[T].erasure => attachment.asInstanceOf[T] }
+
+ def firstAttachment[T](p: PartialFunction[Any, T]): Option[T] =
rawatt match {
- case NontrivialAttachment(pos, payload) =>
- val index = payload.indexWhere(p => p.getClass == classTag[T].erasure)
- if (index != -1) Some(payload(index).asInstanceOf[T])
- else None
- case _ =>
- None
+ case NontrivialAttachment(pos, payload) => payload.collectFirst(p)
+ case _ => None
}
private[this] var rawtpe: Type = _