1 write to End
Microsoft.CodeAnalysis.CSharp (1)
CodeGen\Optimizer.cs (1)
318
this.
End
= end;
10 references to End
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (10)
137
if (def.Start != def.
End
)
154
orderby d.
End
- d.Start, d.
End
ascending
328
return "[" + this.Start + " ," + this.
End
+ ")";
344
return Contains(other.Start) ^ Contains(other.
End
);
349
return this.Start < val && this.
End
> val;
363
return Includes(dummy.Start) ^ Includes(dummy.
End
);
368
return this.Start <= val && this.
End
>= val;
2129
return locInfo.LocalDefs.Any((d) => counter == d.Start && counter == d.
End
);
2193
Debug.Assert(locInfo.LocalDefs.Any((d) => _nodeCounter == d.Start && _nodeCounter <= d.
End
));