summaryrefslogtreecommitdiffstats
path: root/testing/066
Commit message (Collapse)AuthorAgeFilesLines
* issue #7635: Incorrect location for enum in XML file (part 2)Dimitri van Heesch2020-03-151-1/+1
|
* Remove persistent storage of Entry objectsDimitri van Heesch2019-02-171-53/+53
|
* Warning messages of test 66albert-github2019-01-061-50/+53
| | | | | | | | | 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/+50
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.