mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
14 lines
352 B
C#
14 lines
352 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
internal abstract class FreshEntity : Extraction.FreshEntity
|
|
{
|
|
// todo: this can be changed to an override after the .NET 5 upgrade
|
|
protected new Context Context => (Context)base.Context;
|
|
|
|
protected FreshEntity(Context cx)
|
|
: base(cx)
|
|
{
|
|
}
|
|
}
|
|
}
|