mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
332 B
C#
13 lines
332 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
internal abstract class CachedEntity<T> : Extraction.CachedEntity<T> where T : notnull
|
|
{
|
|
public override Context Context => (Context)base.Context;
|
|
|
|
protected CachedEntity(Context context, T symbol)
|
|
: base(context, symbol)
|
|
{
|
|
}
|
|
}
|
|
}
|