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

◆ PushNamespaceScope()

void System.Xml.Xsl.XsltOld.Compiler.PushNamespaceScope ( )
inlinepackage

Definition at line 259 of file Compiler.cs.

260 {
262 NavigatorInput input = Input;
263 if (input.MoveToFirstNamespace())
264 {
265 do
266 {
267 _scopeManager.PushNamespace(input.LocalName, input.Value);
268 }
269 while (input.MoveToNextNamespace());
270 input.ToParent();
271 }
272 }
InputScopeManager _scopeManager
Definition Compiler.cs:65
void PushNamespace(string prefix, string nspace)

References System.Xml.Xsl.XsltOld.Compiler._scopeManager, System.input, System.Xml.Xsl.XsltOld.Compiler.Input, System.Xml.Xsl.XsltOld.InputScopeManager.PushNamespace(), and System.Xml.Xsl.XsltOld.InputScopeManager.PushScope().

Referenced by System.Xml.Xsl.XsltOld.Compiler.PushLiteralScope().