mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
281 B
C#
12 lines
281 B
C#
namespace Semmle.Extraction.Entities
|
|
{
|
|
public abstract class SourceLocation : Location
|
|
{
|
|
protected SourceLocation(Context cx, Microsoft.CodeAnalysis.Location? init) : base(cx, init)
|
|
{
|
|
}
|
|
|
|
public override bool NeedsPopulation => true;
|
|
}
|
|
}
|