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