aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/Symbols.scala')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index 7c9df525c..e33f9651e 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -356,14 +356,6 @@ trait Symbols { this: Context =>
base.staticRef(path.toTermName).requiredSymbol(_ is Module).asTerm
def requiredModuleRef(path: PreName): TermRef = requiredModule(path).termRef
-
- def requiredMethod(pre: TypeRef, name: PreName): TermSymbol = // ### replace with method in Denotations?
- pre.member(name.toTermName).requiredSymbol(_ is Method).asTerm
- def requiredMethod(pre: TermRef, name: PreName): TermSymbol =
- requiredMethod(pre.symbol.moduleClass.typeRef, name)
-
- def requiredMethodRef(pre: TypeRef, name: PreName): TermRef = requiredMethod(pre, name).termRef
- def requiredMethodRef(pre: TermRef, name: PreName): TermRef = requiredMethod(pre, name).termRef
}
object Symbols {