public override IEnumerable <object> GetNestedTypes(EvaluationContext ctx, object type)
        {
            TypeMirror t = (TypeMirror)type;

            foreach (TypeMirror nt in t.GetNestedTypes())
            {
                yield return(nt);
            }
        }