summaryrefslogtreecommitdiff
path: root/sources/scalac/checkers/CheckTypes.java
blob: cfe2bd656da9cc4bb59817901a61af8ae0430889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.checkers;

import scalac.ast.Tree;
import scalac.util.Name;
import scalac.symtab.Type;
import scalac.Global;
import scalac.util.Debug;

/**
 * Check that all tree nodes have a type.
 *
 * @author Michel Schinz
 * @version 1.0
 */

public class CheckTypes extends Checker {
    public CheckTypes(Global global) { super(global); }

    public void check(Tree tree) {
	verify(tree, tree.type != null, "non-null type", "type of tree is not null");
    }
}