Fix references to HoverVisitor

This commit is contained in:
Josh Gross
2023-03-16 13:25:58 -04:00
parent 8312d857b9
commit a960630b11
2 changed files with 1 additions and 2 deletions
@@ -130,7 +130,6 @@ async function hoverExpression(input: string) {
column: pos.character
},
context,
[],
validatorFunctions
);
return hv.hover(expr);
+1 -1
View File
@@ -169,7 +169,7 @@ function expressionHover(
const p = new Parser(lr.tokens, namedContexts, functions);
const expr = p.parse();
const hv = new HoverVisitor(position, context, [], validatorFunctions);
const hv = new HoverVisitor(position, context, validatorFunctions);
const hoverResult = hv.hover(expr);
if (!hoverResult) {
return null;