summaryrefslogblamecommitdiff
path: root/sources/scala/tools/nsc/typechecker/Analyzer.scala
blob: e5797fc377ff85b3d04839f5b36babc61fd0be30 (plain) (tree)
1
2
3
4
5
6
7
8




                            

                                    
                                 


                               



                         
                   

                            
                     
 
/* NSC -- new scala compiler
 * Copyright 2005 LAMP/EPFL
 * @author  Martin Odersky
 */
// $Id$
package scala.tools.nsc.typechecker;

import scala.tools.util.Position;

/** The main attribution phase.
 */
abstract class Analyzer
	 extends Contexts
	 with Namers
	 with Typers
	 with Infer
	 with Variances
         with EtaExpansion {
  val global: Global;
}