This commit is contained in:
Andzej Maciusovic 2019-01-16 08:35:44 +02:00
Родитель 206422569b
Коммит 924c13bc86
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -73,7 +73,6 @@ func Completion(ctx context.Context, f File, pos token.Pos) (items []CompletionI
}
// Skip completion inside comment blocks.
// TODO(anjmao) Currently this wont fix completion inside function comments as this need to be fixed inside lexical completion.
if p, ok := path[0].(*ast.File); ok && isCommentNode(p, pos) {
return items, prefix, nil
}