aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Scopes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-09-21 14:13:09 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-10-11 08:24:35 +0200
commit8975b85958e4d600eebb843c4847e52486c33f46 (patch)
tree1c4e2e89debed1cf86ec447833afd48eee850c7c /src/dotty/tools/dotc/core/Scopes.scala
parentc93f545dc344d4acebdb84dc76eae062eaf67ce0 (diff)
downloaddotty-8975b85958e4d600eebb843c4847e52486c33f46.tar.gz
dotty-8975b85958e4d600eebb843c4847e52486c33f46.tar.bz2
dotty-8975b85958e4d600eebb843c4847e52486c33f46.zip
Drop type declarations from erased ClassInfo
Need to drop all non-class type declarations.
Diffstat (limited to 'src/dotty/tools/dotc/core/Scopes.scala')
-rw-r--r--src/dotty/tools/dotc/core/Scopes.scala19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Scopes.scala b/src/dotty/tools/dotc/core/Scopes.scala
index 54317a496..3f7a4cb2c 100644
--- a/src/dotty/tools/dotc/core/Scopes.scala
+++ b/src/dotty/tools/dotc/core/Scopes.scala
@@ -106,7 +106,10 @@ object Scopes {
def next(): Symbol = { val r = e.sym; e = lookupNextEntry(e); r }
}
- /** The denotation set of all the symbols with given name in this scope */
+ /** The denotation set of all the symbols with given name in this scope
+ * Symbols occur in the result in reverse order relative to their occurrence
+ * in `this.toList`.
+ */
final def denotsNamed(name: Name, select: SymDenotation => Boolean = selectAll)(implicit ctx: Context): PreDenotation = {
var syms: PreDenotation = NoDenotation
var e = lookupEntry(name)
@@ -118,6 +121,20 @@ object Scopes {
syms
}
+ /** The scope that keeps only those symbols from this scope that match the
+ * given predicates. If all symbols match, returns the scope itself, otherwise
+ * a copy with the matching symbols.
+ */
+ final def filteredScope(p: Symbol => Boolean)(implicit ctx: Context): Scope = {
+ var result: MutableScope = null
+ for (sym <- iterator)
+ if (!p(sym)) {
+ if (result == null) result = cloneScope
+ result.unlink(sym)
+ }
+ if (result == null) this else result
+ }
+
def implicitDecls(implicit ctx: Context): List[TermRef] = Nil
final def toText(printer: Printer): Text = printer.toText(this)