Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CheckAttributeSetsDfs()

void System.Xml.Xsl.Xslt.XsltLoader.CheckAttributeSetsDfs ( AttributeSet attSet)
inlineprivate

Definition at line 879 of file XsltLoader.cs.

880 {
881 switch (attSet.CycleCheck)
882 {
883 case CycleCheck.NotStarted:
884 attSet.CycleCheck = CycleCheck.Processing;
886 attSet.CycleCheck = CycleCheck.Completed;
887 break;
888 default:
889 _compiler.ReportError(attSet.Content[0].SourceLine, System.SR.Xslt_CircularAttributeSet, attSet.Name.QualifiedName);
890 break;
891 case CycleCheck.Completed:
892 break;
893 }
894 }
static string Xslt_CircularAttributeSet
Definition SR.cs:1922
Definition SR.cs:7
void ReportError(ISourceLineInfo lineInfo, string res, params string[] args)
Definition Compiler.cs:331
void CheckUseAttrubuteSetInList(IList< XslNode > list)

References System.Xml.Xsl.Xslt.XsltLoader._compiler, System.Xml.Xsl.Xslt.XsltLoader.CheckUseAttrubuteSetInList(), System.Xml.Dictionary, System.Xml.Xsl.Xslt.Compiler.ReportError(), and System.SR.Xslt_CircularAttributeSet.

Referenced by System.Xml.Xsl.Xslt.XsltLoader.CheckUseAttrubuteSetInList(), and System.Xml.Xsl.Xslt.XsltLoader.Load().