상속: ListExp
예제 #1
0
    public void CarExp(CarExp e)
    {
	e.Left.Visit(this);
	il.Emit(OpCodes.Call, ((typeof(LispRuntime)).GetMethod("Car")));
    }
예제 #2
0
파일: typecheck.cs 프로젝트: ArildF/masters
    public void CarExp(CarExp e)
    {
	e.Left.Visit(this);
	CheckList(ref e.Left);
	e.ExpType = typeof(CList);
	
    }