Fix references to HoverVisitor
This commit is contained in:
@@ -130,7 +130,6 @@ async function hoverExpression(input: string) {
|
||||
column: pos.character
|
||||
},
|
||||
context,
|
||||
[],
|
||||
validatorFunctions
|
||||
);
|
||||
return hv.hover(expr);
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user