using Microsoft.CodeAnalysis.Text; namespace Semmle.Extraction.Entities { #nullable disable warnings public abstract class Location : CachedEntity { #nullable restore warnings protected Location(Context cx, Microsoft.CodeAnalysis.Location? init) : base(cx, init) { } public override Microsoft.CodeAnalysis.Location? ReportingLocation => Symbol; public override TrapStackBehaviour TrapStackBehaviour => TrapStackBehaviour.OptionalLabel; } }