comparison dmd/declaration/Match.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children e28b18c23469
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.declaration.Match;
2
3 import dmd.FuncDeclaration;
4 import dmd.MATCH;
5
6 struct Match
7 {
8 int count; // number of matches found
9 MATCH last; // match level of lastf
10 FuncDeclaration lastf; // last matching function we found
11 FuncDeclaration nextf; // current matching function
12 FuncDeclaration anyf; // pick a func, any func, to use for error recovery
13 }
14