Skip to content

Commit ac26a5a

Browse files
authored
возвращается super.visitNewExpression(ctx);
1 parent 81dcbaf commit ac26a5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/references/ReferenceIndexFiller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public BSLParserRuleContext visitNewExpression(BSLParser.NewExpressionContext ct
132132
if (NotifyDescription.isNotifyDescription(ctx)) {
133133
final var doCallContext = ctx.doCall();
134134
if (doCallContext == null){
135-
return ctx;
135+
return super.visitNewExpression(ctx);
136136
}
137137
var callParamList = doCallContext.callParamList().callParam();
138138

0 commit comments

Comments
 (0)