namespace Semmle.Extraction.CSharp.Entities { internal abstract class CachedEntity : Extraction.CachedEntity { // 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) { } } }