Share entity base classes between CIL and source extraction

This commit is contained in:
Tamas Vajk
2021-02-11 13:52:38 +01:00
parent e7853cc3a0
commit 67289a498f
106 changed files with 705 additions and 710 deletions

View File

@@ -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;