Lines Matching refs:tap
110 override void visit(TemplateAliasParameter tap)
112 if (tap.specType && !reliesOnTident(tap.specType, parameters))
114 tap.specType = tap.specType.typeSemantic(tap.loc, sc);
116 tap.specAlias = aliasParameterSemantic(tap.loc, sc, tap.specAlias, parameters);
120 if (tap.defaultAlias)
121 tap.defaultAlias = tap.defaultAlias.semantic(tap.loc, sc);
123 result = !(tap.specType && isError(tap.specType)) && !(tap.specAlias && isError(tap.specAlias));