summaryrefslogblamecommitdiff
path: root/sources/scala/tools/nsc/typechecker/Analyzer.scala
blob: 18de3855b8f4b666126c5203b47b98edb9352c81 (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 EtaExpansion
          {
  val global: Global;
}