mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
496 B
C#
15 lines
496 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
#nullable disable warnings
|
|
public abstract class Location : CachedEntity<Microsoft.CodeAnalysis.Location?>
|
|
{
|
|
#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;
|
|
}
|
|
}
|