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 0f33332 commit 751671dCopy full SHA for 751671d
RetailCoder.VBE/UI/Command/MenuItems/CommandBars/IContextFormatter.cs
@@ -84,6 +84,12 @@ private string Format(Declaration declaration)
84
declaration.IdentifierName,
85
typeName);
86
}
87
+ else if (declaration.DeclarationType == DeclarationType.ComAlias)
88
+ {
89
+ formattedDeclaration = string.Format("{0};{1}.{2} (alias:{3})",
90
+ System.IO.Path.GetFileName(moduleName.ProjectPath), moduleName.ProjectName,
91
+ declaration.IdentifierName, declaration.AsTypeName);
92
+ }
93
94
var subscripts = declaration.IsArray ? "()" : string.Empty;
95
if (declaration.ParentDeclaration != null && declaration.ParentDeclaration.DeclarationType.HasFlag(DeclarationType.Member))
0 commit comments