mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-09 16:06:08 +02:00
Include public properties without setters from in code generator logic
This commit is contained in:
@@ -133,7 +133,6 @@ public sealed class StatementRegistryGenerator : IIncrementalGenerator
|
|||||||
.OfType<IPropertySymbol>()
|
.OfType<IPropertySymbol>()
|
||||||
.Where(p => !p.IsStatic
|
.Where(p => !p.IsStatic
|
||||||
&& p.DeclaredAccessibility == Accessibility.Public
|
&& p.DeclaredAccessibility == Accessibility.Public
|
||||||
&& p.SetMethod is not null
|
|
||||||
&& !ctorParamNames.Contains(p.Name))
|
&& !ctorParamNames.Contains(p.Name))
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user