1 write to Start
Microsoft.CodeAnalysis.CSharp (1)
CodeGen\Optimizer.cs (1)
318
this.
Start
= start;
10 references to Start
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (10)
138
if (def.
Start
!= def.End)
155
orderby d.End - d.
Start
, d.End ascending
324
return new LocalDefUseSpan(this.
Start
, end);
329
return "[" + this.
Start
+ " ," + this.End + ")";
345
return Contains(other.
Start
) ^ Contains(other.End);
350
return this.
Start
< val && this.End > val;
364
return Includes(dummy.
Start
) ^ Includes(dummy.End);
369
return this.
Start
<= val && this.End >= val;
2053
return locInfo.LocalDefs.Any((d) => counter == d.
Start
&& counter == d.End);
2117
Debug.Assert(locInfo.LocalDefs.Any((d) => _nodeCounter == d.
Start
&& _nodeCounter <= d.End));