summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-07-30 17:26:46 +0000
committerMartin Odersky <odersky@gmail.com>2009-07-30 17:26:46 +0000
commit14c5910337e5c8d291ca021c1a87d771d8f69c9d (patch)
tree42b85b5eb3ccbc7a6d699575120185a96793daf2 /src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
parent8f1cf06e016b278900d20880ed3aed93cc7342b8 (diff)
downloadscala-14c5910337e5c8d291ca021c1a87d771d8f69c9d.tar.gz
scala-14c5910337e5c8d291ca021c1a87d771d8f69c9d.tar.bz2
scala-14c5910337e5c8d291ca021c1a87d771d8f69c9d.zip
more fixes for positions
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/SymbolTable.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/SymbolTable.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
index 9e42db2fce..e8baaec732 100644
--- a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
+++ b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
@@ -22,6 +22,7 @@ abstract class SymbolTable extends Names
with AnnotationInfos
with AnnotationCheckers
with Trees
+ with Positions
{
def settings: Settings
def rootLoader: LazyType
@@ -120,6 +121,4 @@ abstract class SymbolTable extends Names
/** The phase which has given index as identifier */
val phaseWithId: Array[Phase]
-
- def ensureNonOverlapping(tree: Tree, others: List[Tree])
}