use of dyvilx.tools.compiler.ast.type.typevar.ResolvedTypeVarType in project Dyvil by Dyvil.
the class NamedGenericType method resolveTopLevelWith.
private IType resolveTopLevelWith(MarkerList markers, IContext context) {
final MatchList<ITypeAlias> typeAliases = IContext.resolveTypeAlias(context, null, this.name, this.arguments);
if (typeAliases.hasCandidate()) {
final ITypeAlias typeAlias = typeAliases.getBestMember();
final IType aliasType = typeAlias.getType();
if (!aliasType.isResolved()) {
markers.add(Markers.semanticError(this.position, "type.alias.unresolved", this.name));
return aliasType.atPosition(this.position);
}
return this.checkCount(markers, typeAlias, "type_alias", aliasType);
}
final IClass theClass = context.resolveClass(this.name);
if (theClass != null) {
final IType classType = theClass.getThisType();
return this.checkCount(markers, theClass, "class", classType);
}
final ITypeParameter typeParameter = context.resolveTypeParameter(this.name);
if (typeParameter != null) {
markers.add(Markers.semanticError(this.position, "type.generic.type_parameter.not_generic", typeParameter.getName()));
return new ResolvedTypeVarType(typeParameter, this.position);
}
final Package thePackage = context.resolvePackage(this.name);
if (thePackage != null) {
markers.add(Markers.semanticError(this.position, "type.generic.package.not_generic", thePackage.getName()));
return new PackageType(thePackage).atPosition(this.position);
}
return null;
}
use of dyvilx.tools.compiler.ast.type.typevar.ResolvedTypeVarType in project Dyvil by Dyvil.
the class NamedType method resolveTopLevelWith.
private IType resolveTopLevelWith(@SuppressWarnings("UnusedParameters") MarkerList markers, IContext context) {
final MatchList<ITypeAlias> typeAliases = IContext.resolveTypeAlias(context, null, this.name, TypeList.EMPTY);
if (typeAliases.hasCandidate()) {
final ITypeAlias typeAlias = typeAliases.getBestMember();
final IType type = typeAlias.getType();
if (!type.isResolved() && markers != null) {
markers.add(Markers.semanticError(this.position, "type.alias.unresolved", this.name));
return type.atPosition(this.position);
}
return type.getConcreteType(ITypeContext.DEFAULT).atPosition(this.position);
}
final IClass theClass = context.resolveClass(this.name);
if (theClass != null) {
return new ResolvedClassType(theClass, this.position);
}
final ITypeParameter typeParameter = context.resolveTypeParameter(this.name);
if (typeParameter != null) {
return new ResolvedTypeVarType(typeParameter, this.position);
}
final Package thePackage = context.resolvePackage(this.name);
if (thePackage != null) {
return new PackageType(thePackage).atPosition(this.position);
}
return null;
}
Aggregations