summaryrefslogtreecommitdiffstats
path: root/testing/066_property_initializer.cs
Commit message (Collapse)AuthorAgeFilesLines
* Warning messages of test 66albert-github2019-01-061-2/+4
| | | | | | | | | Test 66 gives some warning messages bout not documented entities: .../testing/066_property_initializer.cs:4: warning: Compound Class1 is not documented. .../testing/066_property_initializer.cs:5: warning: Member Property1 (property) of class Class1 is not documented. .../testing/066_property_initializer.cs:6: warning: Member Property2 (property) of class Class1 is not documented. The entities have been documented.
* Fix C# property initializer parsingPiotr Szydełko2017-05-201-0/+7
int Property {get; set;} = 23; The parser was ending the property at the closing bracket, which resulted in the initializer being assigned to the following property.