mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
277 B
C#
13 lines
277 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
internal abstract class FreshEntity : Extraction.FreshEntity
|
|
{
|
|
public override Context Context => (Context)base.Context;
|
|
|
|
protected FreshEntity(Context cx)
|
|
: base(cx)
|
|
{
|
|
}
|
|
}
|
|
}
|