Exemplo n.º 1
0
 public CodeExpression VisitYieldExp(YieldExp yieldExp)
 {
     if (yieldExp.exp == null)
     {
         return(m.Prim(null));
     }
     else
     {
         return(yieldExp.exp.Accept(this));
     }
 }
Exemplo n.º 2
0
 public DataType VisitYieldExp(YieldExp y)
 {
     if (y.exp != null)
     {
         return(analyzer.TypeFactory.CreateList(y.exp.Accept(this)));
     }
     else
     {
         return(DataType.None);
     }
 }
Exemplo n.º 3
0
 public void VisitYieldExp(YieldExp yieldExp)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public void VisitYieldExp(YieldExp yieldExp)
 {
     throw new NotImplementedException();
 }