mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
Share entity base classes between CIL and source extraction
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
protected Property(Context cx, IPropertySymbol init)
|
||||
: base(cx, init)
|
||||
{
|
||||
type = new Lazy<Type>(() => Type.Create(Context, symbol.Type));
|
||||
type = new Lazy<Type>(() => Type.Create(base.Context, symbol.Type));
|
||||
}
|
||||
|
||||
private readonly Lazy<Type> type;
|
||||
|
||||
Reference in New Issue
Block a user