Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-11[mdoc] come up with test/design for better member implementation detectionmaopeixia
2018-10-10all interfaces are now listed.Joel Martinez
Closes #334
2018-04-26mdoc: C# Finalizer Signatures for Generic Types incorrectGRODNO\Anton_Sokolovskii
Edited signature for destructor in a generic classes Edited integration test Added unit test Closes #184
2017-12-12[mdoc] fix breaks with a key not found exception under when a class ↵Mikhail Melnikov
implements a destructor Removed `!isExplicitlyImplemented` when we check if there is a fingerprint among implemented interfaces members: ``` if (!allImplementedMembers.ContainsKey(fingerprint)) { ClearElement(root, "Implements"); return; } ``` Now explicitly implemented members have signatures in allImplementedMembers too. Added a destructor method to Class6 in the integration test `check-monodocer-members-implementation` Closes #158
2017-12-11[mdoc] Fixed StackOverflow in F# and exception in members implementations ↵Mikhail Melnikov
generation StackOverflow in F# was caused by generic types constrained recursively by themselves (`'T :> seq<'T>`) Added `TestConstraints_2_2` unit test For members implementations generation, we shouldn't count on order of type generic arguments because they can be passed to interface reordered. Slightly remade generation of fingerprints. Extended `check-monodocer-members-implementation` integration test with `IScrollable` and `ScrollableBase` classes
2017-12-07[mdoc] Implementation details are now shown on membersMikhail Melnikov
Based on the pull request #170 Node <Implements> with subnodes <InterfaceMember> show which member(s) of interface(s) is(are) implemented <Implements> and <InterfaceMember> are added to monodoc-ecma.xsd Added the integration test `check-monodocer-members-implementation` Closes #158