We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per #550, C# has been supported. But the getters and setters cannot be parsed normally now, e.g.:
Property signature not valid, falling back to variable: string Path = string.Empty
Getters and setters are missing in the declaration signature:
https://github.com/michaeljones/breathe/blob/4ce8c7a0d79f79f0ae3e7c7fbaa9c4fbb5c84888/breathe/renderer/sphinxrenderer.py#L1839-L1855
argsstring is empty. We should consider node.settable and node.gettable to construct { get; } and { set; }
argsstring
node.settable
node.gettable
{ get; }
{ set; }
The text was updated successfully, but these errors were encountered:
xuhongxu96
Successfully merging a pull request may close this issue.
Per #550, C# has been supported. But the getters and setters cannot be parsed normally now, e.g.:
Getters and setters are missing in the declaration signature:
https://github.com/michaeljones/breathe/blob/4ce8c7a0d79f79f0ae3e7c7fbaa9c4fbb5c84888/breathe/renderer/sphinxrenderer.py#L1839-L1855
argsstring
is empty. We should considernode.settable
andnode.gettable
to construct{ get; }
and{ set; }
The text was updated successfully, but these errors were encountered: