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