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




                            

                                    

                               
                       






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

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