Skip to content

Commit

Permalink
Add tsymbol
Browse files Browse the repository at this point in the history
  • Loading branch information
poorna2152 committed Sep 5, 2024
1 parent 545dc26 commit 96c0668
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ public class Types {
private BLangDiagnosticLog dlog;
private Names names;
private int finiteTypeCount = 0;
private BUnionType expandedXMLBuiltinSubtypes;
private final BLangAnonymousModelHelper anonymousModelHelper;
private int recordCount = 0;
private SymbolEnv env;
Expand Down Expand Up @@ -200,9 +199,6 @@ public Types(CompilerContext context) {
this.symResolver = SymbolResolver.getInstance(context);
this.dlog = BLangDiagnosticLog.getInstance(context);
this.names = Names.getInstance(context);
this.expandedXMLBuiltinSubtypes = BUnionType.create(null,
symTable.xmlElementType, symTable.xmlCommentType,
symTable.xmlPIType, symTable.xmlTextType);
this.unifier = new Unifier();
this.anonymousModelHelper = BLangAnonymousModelHelper.getInstance(context);
}
Expand Down Expand Up @@ -2062,10 +2058,14 @@ private BType getTypedBindingPatternTypeForXmlCollection(BType collectionType) {
case TypeTags.NEVER:
return constraint;
case TypeTags.UNION:
BTypeSymbol collectionTSymbol = collectionType.tsymbol;
BTypeSymbol typeSymbol =
Symbols.createTypeSymbol(SymTag.UNION_TYPE, Flags.asMask(EnumSet.of(Flag.PUBLIC)), Names.EMPTY,
collectionTSymbol.pkgID, null, collectionTSymbol.owner, symTable.builtinPos, VIRTUAL);
Set<BType> collectionTypes = getEffectiveMemberTypes((BUnionType) constraint);
Set<BType> builtinXMLConstraintTypes = getEffectiveMemberTypes
((BUnionType) ((BXMLType) symTable.xmlType).constraint);
return BUnionType.create(null, (LinkedHashSet<BType>) collectionTypes);
BType type = BUnionType.create(typeSymbol, (LinkedHashSet<BType>) collectionTypes);
typeSymbol.type = type;
return type;
default:
return null;
}
Expand Down

0 comments on commit 96c0668

Please sign in to comment.