コード例 #1
0
ファイル: XmlILConstructAnalyzer.cs プロジェクト: jnm2/corefx
 /// <summary>
 /// Default to worst possible construction information.
 /// </summary>
 private XmlILConstructInfo(QilNodeType nodeType)
 {
     _nodeType                = nodeType;
     _xstatesInitial          = _xstatesFinal = PossibleXmlStates.Any;
     _xstatesBeginLoop        = _xstatesEndLoop = PossibleXmlStates.None;
     _isNmspInScope           = false;
     _mightHaveNmsp           = true;
     _mightHaveAttrs          = true;
     _mightHaveDupAttrs       = true;
     _mightHaveNmspAfterAttrs = true;
     _constrMeth              = XmlILConstructMethod.Iterator;
     _parentInfo              = null;
 }
コード例 #2
0
 /// <summary>
 /// Default to worst possible construction information.
 /// </summary>
 private XmlILConstructInfo(QilNodeType nodeType) {
     this.nodeType = nodeType;
     this.xstatesInitial = this.xstatesFinal = PossibleXmlStates.Any;
     this.xstatesBeginLoop = this.xstatesEndLoop = PossibleXmlStates.None;
     this.isNmspInScope = false;
     this.mightHaveNmsp = true;
     this.mightHaveAttrs = true;
     this.mightHaveDupAttrs = true;
     this.mightHaveNmspAfterAttrs = true;
     this.constrMeth = XmlILConstructMethod.Iterator;
     this.parentInfo = null;
 }