Files

10 lines
177 B
C#

namespace Semmle.Extraction.CSharp
{
public abstract class LabelledEntity : Entity
{
protected LabelledEntity(Context cx) : base(cx)
{
}
}
}