소스 검색

Adds debug logging to hovers

main
Eric Amodio 5 년 전
부모
커밋
cc65431666
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. +14
    -0
      src/hovers/lineHoverController.ts

+ 14
- 0
src/hovers/lineHoverController.ts 파일 보기

@ -80,6 +80,13 @@ export class LineHoverController implements Disposable {
return this._hoverProviderDisposable !== undefined;
}
@debug({
args: {
0: document => document.uri.toString(true),
1: (position: Position) => `${position.line}:${position.character}`,
2: () => false
}
})
async provideDetailsHover(
document: TextDocument,
position: Position,
@ -139,6 +146,13 @@ export class LineHoverController implements Disposable {
return new Hover(message, range);
}
@debug({
args: {
0: document => document.uri.toString(true),
1: (position: Position) => `${position.line}:${position.character}`,
2: () => false
}
})
async provideChangesHover(
document: TextDocument,
position: Position,

불러오는 중...
취소
저장