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