ATermReal real = (ATermReal) term;
result = makeReal(real.getReal());
break;
case ATerm.PLACEHOLDER:
ATermPlaceholder placeHolder = (ATermPlaceholder) term;
result = makePlaceholder(importTerm(placeHolder.getPlaceholder()));
break;
case ATerm.AFUN:
AFun afun = (AFun) term;
return makeAFun(afun.getName(), afun.getArity(), afun.isQuoted());