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

  import global._;

  case class ImportType(tree: Import) extends Type;
}