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

◆ CallCompare()

void System.Xml.Xsl.IlGen.GenerateHelper.CallCompare ( XmlTypeCode code)
inline

Definition at line 372 of file GenerateHelper.cs.

373 {
374 MethodInfo meth = null;
375 switch (code)
376 {
377 case XmlTypeCode.String:
378 meth = XmlILMethods.StrCmp;
379 break;
380 case XmlTypeCode.Decimal:
381 meth = XmlILMethods.DecCmp;
382 break;
383 }
384 Call(meth);
385 }

References System.Reflection.Emit.Call, System.Xml.Xsl.IlGen.XmlILMethods.DecCmp, System.Xml.Dictionary, and System.Xml.Xsl.IlGen.XmlILMethods.StrCmp.

Referenced by System.Xml.Xsl.IlGen.XmlILVisitor.Compare().