summaryrefslogtreecommitdiff
path: root/src/reflect/scala/reflect/internal/ReificationSupport.scala
diff options
context:
space:
mode:
authorStefan Zeiger <szeiger@novocode.com>2016-08-12 13:36:27 +0200
committerGitHub <noreply@github.com>2016-08-12 13:36:27 +0200
commit1950412f6d4118433408444ace371eb020342711 (patch)
treed1b69d212b929acebcd1b5491c13bbfca6def511 /src/reflect/scala/reflect/internal/ReificationSupport.scala
parentfdb3105228db20e347a61e61e2e1d86b27683d0d (diff)
parent636af2e98c9af707b944724e439d6e39bb3b074e (diff)
downloadscala-1950412f6d4118433408444ace371eb020342711.tar.gz
scala-1950412f6d4118433408444ace371eb020342711.tar.bz2
scala-1950412f6d4118433408444ace371eb020342711.zip
Merge pull request #5252 from adriaanm/t8339
SI-8339 remove deprecated rewrite of withFilter -> filter
Diffstat (limited to 'src/reflect/scala/reflect/internal/ReificationSupport.scala')
-rw-r--r--src/reflect/scala/reflect/internal/ReificationSupport.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/reflect/scala/reflect/internal/ReificationSupport.scala b/src/reflect/scala/reflect/internal/ReificationSupport.scala
index 33ca78b439..026438e421 100644
--- a/src/reflect/scala/reflect/internal/ReificationSupport.scala
+++ b/src/reflect/scala/reflect/internal/ReificationSupport.scala
@@ -726,6 +726,7 @@ trait ReificationSupport { self: SymbolTable =>
}
// match call to either withFilter or filter
+ // TODO: now that we no longer rewrite `filter` to `withFilter`, maybe this extractor should only look for `withFilter`?
protected object FilterCall {
def unapply(tree: Tree): Option[(Tree,Tree)] = tree match {
case Apply(Select(obj, nme.withFilter | nme.filter), arg :: Nil) =>