1 instantiation of InputScope
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\InputScopeManager.cs (1)
53_scopeStack = new InputScope(_scopeStack);
18 references to InputScope
System.Private.Xml (18)
System\Xml\Xsl\XsltOld\Compiler.cs (2)
59private InputScope? _rootScope; 318InputScope varScope;
System\Xml\Xsl\XsltOld\InputScope.cs (7)
14private InputScope? _parent; 21internal InputScope? Parent 43internal InputScope(InputScope? parent) 48internal void Init(InputScope? parent) 109for (InputScope? inputScope = this; inputScope != null; inputScope = inputScope.Parent) 125InputScope? prevScope = null; 126for (InputScope? inputScope = this; inputScope != null; inputScope = inputScope.Parent)
System\Xml\Xsl\XsltOld\InputScopeManager.cs (8)
13private InputScope? _scopeStack; 17public InputScopeManager(XPathNavigator navigator, InputScope? rootScope) 23internal InputScope? CurrentScope 28internal InputScope VariableScope 51internal InputScope PushScope() 106for (InputScope? inputScope = _scopeStack; inputScope != null; inputScope = inputScope.Parent) 150for (InputScope? inputScope = _scopeStack; inputScope != null; inputScope = inputScope.Parent) 173for (InputScope? inputScope = _scopeStack; inputScope != null; inputScope = inputScope.Parent)
System\Xml\Xsl\XsltOld\NavigatorInput.cs (1)
207internal NavigatorInput(XPathNavigator navigator, string baseUri, InputScope? rootScope)