MCPcopy
hub / github.com/conwnet/github1s / constructor

Method constructor

extensions/github1s/src/repository/index.ts:27–34  ·  view source on GitHub ↗
(
		private _scheme: string,
		private _repo: string,
	)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 1

getInstanceMethod · 0.45

Tested by

no test coverage detected