We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14d0fca commit 243e235Copy full SHA for 243e235
test/util/test_parse_signature.py
@@ -57,10 +57,20 @@ def test_1(self) -> None:
57
),
58
59
(
60
- "Function Test(Optional d As Variant = Empty)",
+ "Public Property Get asdf() As String",
61
+ VbaSignatureInfo(
62
+ visibility="Public",
63
+ return_type="String",
64
+ procedure_type="Property Get",
65
+ name="asdf",
66
+ args=[],
67
+ ),
68
69
+ (
70
+ "Function Test(Optional d As Variant = Empty) As String",
71
VbaSignatureInfo(
72
visibility=None,
- return_type=None,
73
74
procedure_type="Function",
75
name="Test",
76
args=[
0 commit comments