System.Xml.Xsl.IlGen.IteratorDescriptor.EnsureNoStack C# (CSharp) Method

EnsureNoStack() public method

If the current item is on the stack, move it to a local variable.
public EnsureNoStack ( string locName ) : void
locName string
return void
        public void EnsureNoStack(string locName) {
            if (this.storage.Location == ItemLocation.Stack)
                EnsureLocal(locName);
        }