@@ -27,7 +27,7 @@ class PropertyValidatorTestLogic {
2727 public PropertyValidatorTestLogic ( Validator < Property > validator )
2828 {
2929 this . validator = validator ;
30-
30+
3131 // Create a dummy compilation to get a semantic model and RootContext
3232 var syntaxTree = CSharpSyntaxTree . ParseText ( "namespace Test { }" ) ;
3333 var compilation = CSharpCompilation . Create (
@@ -59,12 +59,12 @@ Property CreateProperty (string name = "TestProperty",
5959 modifiers . Add ( SyntaxFactory . Token ( SyntaxKind . PartialKeyword ) ) ;
6060
6161 var accessors = ImmutableArray . CreateBuilder < Accessor > ( ) ;
62-
62+
6363 if ( hasGetter ) {
6464 getterSelector ??= "sampleGetter" ;
6565 var getterExportData = new ExportData < ObjCBindings . Property > ( getterSelector ,
6666 argumentSemantic , ObjCBindings . Property . Default ) ;
67-
67+
6868 accessors . Add ( new Accessor (
6969 accessorKind : AccessorKind . Getter ,
7070 symbolAvailability : new SymbolAvailability . Builder ( ) . ToImmutable ( ) ,
@@ -78,7 +78,7 @@ Property CreateProperty (string name = "TestProperty",
7878 setterSelector ??= "sampleSetter:" ;
7979 var setterExportData = new ExportData < ObjCBindings . Property > ( setterSelector ,
8080 argumentSemantic , ObjCBindings . Property . Default ) ;
81-
81+
8282 accessors . Add ( new Accessor (
8383 accessorKind : AccessorKind . Setter ,
8484 symbolAvailability : new SymbolAvailability . Builder ( ) . ToImmutable ( ) ,
@@ -102,7 +102,7 @@ Property CreateProperty (string name = "TestProperty",
102102 modifiers : modifiers . ToImmutable ( ) ,
103103 accessors : accessors . ToImmutable ( )
104104 ) {
105- ExportPropertyData = new ExportData < ObjCBindings . Property > ( propertySelector ,
105+ ExportPropertyData = new ExportData < ObjCBindings . Property > ( propertySelector ,
106106 argumentSemantic , propertyFlags )
107107 } ;
108108 }
0 commit comments