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 1593a80 commit e81b57bCopy full SHA for e81b57b
Rubberduck.Parsing/Symbols/IdentifierReference.cs
@@ -1,5 +1,4 @@
1
using Antlr4.Runtime;
2
-using Microsoft.CSharp.RuntimeBinder;
3
using Rubberduck.Parsing.Grammar;
4
using Rubberduck.VBEditor;
5
using System.Linq;
@@ -116,8 +115,7 @@ public bool HasTypeHint(out string token)
116
115
_hasTypeHint = false;
117
return false;
118
}
119
- System.Reflection.MethodInfo method = null;
120
- method = Context.Parent.GetType().GetMethods().FirstOrDefault(m => m.Name == "typeHint");
+ var method = Context.Parent.GetType().GetMethods().FirstOrDefault(m => m.Name == "typeHint");
121
if (method == null)
122
{
123
token = null;
0 commit comments