Exemple #1
0
 public void CarExp(CarExp e)
 {
     e.Left.Visit(this);
     CheckList(ref e.Left);
     e.ExpType = typeof(CList);
 }
Exemple #2
0
 public void CarExp(CarExp e)
 {
     e.Left.Visit(this);
     il.Emit(OpCodes.Call, ((typeof(LispRuntime)).GetMethod("Car")));
 }