Example #1
0
 void VisitDeclareVairable(DB_Type type, DB_Member method, DB_StatementSyntax statement, VariableDeclarationSyntax Declaration)
 {
     foreach (var e in Declaration.Variables)
     {
         model.AddLocal(e.Identifier, model.Finder.FindType(Declaration.Type, model));
         model.VisitExp(this, type, method, statement, e.Initializer, null);
     }
 }