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.
2 parents 87feec9 + bdd6c4c commit e1fd278Copy full SHA for e1fd278
PostfixCodeCompletion/PluginMain.cs
@@ -328,7 +328,7 @@ static bool IsHash(MemberModel target)
328
329
static bool IsNumber(MemberModel target)
330
{
331
- var type = target.Type;
+ var type = target is ClassModel ? ((ClassModel)target).QualifiedName : target.Type;
332
if (type == ASContext.Context.Features.numberKey) return true;
333
switch (PluginBase.MainForm.CurrentDocument.SciControl.ConfigurationLanguage)
334
0 commit comments