Esempio n. 1
0
 private void AddVariable(AstNode node, string name, AstType astType)
 {
     if (!_variables.ContainsKey(name))
     {
         Type type = astType.GetActualType();
         _variables.Add(name, Tuple.Create(node, type));
     }
 }