Ejemplo n.º 1
0
        public virtual bool VisitTypeAliasTemplateDecl(TypeAliasTemplate template)
        {
            if (!VisitDeclaration(template))
            {
                return(false);
            }

            foreach (var templateParameter in template.Parameters)
            {
                templateParameter.Visit(this);
            }

            return(true);
        }
Ejemplo n.º 2
0
 public virtual string VisitTypeAliasTemplateDecl(TypeAliasTemplate typeAliasTemplate)
 {
     throw new NotImplementedException();
 }