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