( private _scheme: string, private _repo: string, )
| 25 | } |
| 26 | |
| 27 | private constructor( |
| 28 | private _scheme: string, |
| 29 | private _repo: string, |
| 30 | ) { |
| 31 | this._branchTagManager = BranchTagManager.getInstance(_scheme, _repo); |
| 32 | this._codeReviewManager = CodeReviewManager.getInstance(_scheme, _repo); |
| 33 | this._blameRangesCache = new Map<string, BlameRange[]>(); |
| 34 | } |
| 35 | |
| 36 | getBranchList(...args: Parameters<BranchTagManager['getBranchList']>) { |
| 37 | return this._branchTagManager.getBranchList(...args); |
nothing calls this directly
no test coverage detected