summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-11-22 15:02:08 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-11-22 15:02:08 +0000
commit7c0ee3acb4f0319040e21c242c10c819db7490ff (patch)
tree8fe5c5abf7fb91dc73a2fc824ef345d189b6d702 /src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
parentc6f4dac7beec147982c91e8129834b2b50299c82 (diff)
downloadscala-7c0ee3acb4f0319040e21c242c10c819db7490ff.tar.gz
scala-7c0ee3acb4f0319040e21c242c10c819db7490ff.tar.bz2
scala-7c0ee3acb4f0319040e21c242c10c819db7490ff.zip
Some cleanup (mainly in Typers).
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/SymbolTable.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/SymbolTable.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
index 281a3174f9..918f1b37ba 100644
--- a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
+++ b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
@@ -39,15 +39,6 @@ abstract class SymbolTable extends reflect.generic.Universe
/** Are we compiling for .NET ? */
def forMSIL: Boolean
- protected def trackTypeIDE(sym : Symbol) : Boolean = true
- def compare(sym : Symbol, name : Name) = sym.name == name
- def verifyAndPrioritize[T](g : Symbol => Symbol)(pt : Type)(f : => T) = f
- def trackSetInfo[T <: Symbol](sym : T)(info : Type) : T = {
- sym.setInfo(info); sym
- }
- def notifyImport(what : Name, container : Type, from : Name, to : Name) : Unit = {}
- def sanitize(tree : Tree) : Tree = tree
-
/** A period is an ordinal number for a phase in a run.
* Phases in later runs have higher periods than phases in earlier runs.
* Later phases have higher periods than earlier phases in the same run.