prompt
stringlengths 727
946
| symbol_a
stringlengths 83
175
| symbol_b
stringlengths 51
147
| symbol_a_name
stringlengths 3
73
| symbol_b_name
stringlengths 2
60
| is_linked
bool 2
classes | hop_count
int64 1
5
⌀ | ground_truth_path
listlengths 2
6
⌀ | repo_name
stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|
In cli/cli, determine if `createFakeSearchReposServer` and `common#Fatalf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/createFakeSearchReposServer().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Fatalf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/createFakeSearchReposServer().
|
scip-go gomod github.com/golang/go/src . testing/common#Fatalf().
|
createFakeSearchReposServer
|
common#Fatalf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `createRun` and `Client#Do` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/createRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Client#Do().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/createRun().
|
scip-go gomod github.com/golang/go/src . `net/http`/Client#Do().
|
createRun
|
Client#Do
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/createRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/isNewRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/FetchLatestRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/fetchReleasePath().",
"scip-go gomod github.com/golang/go/src . `net/http`/Client#Do()."
] |
cli/cli
|
In cli/cli, determine if `getTunnelManager` and `getTunnelClient` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelManager().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelClient().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelManager().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelClient().
|
getTunnelManager
|
getTunnelClient
| false
| null | null |
cli/cli
|
In cli/cli, determine if `syncLocalRepo` and `syncRemoteRepo` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncLocalRepo().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncRemoteRepo().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncLocalRepo().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncRemoteRepo().
|
syncLocalRepo
|
syncRemoteRepo
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Gist#TruncDescription` and `Now` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/shared`/Gist#TruncDescription().`
- Symbol B: `scip-go gomod github.com/golang/go/src . time/Now().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/shared`/Gist#TruncDescription().
|
scip-go gomod github.com/golang/go/src . time/Now().
|
Gist#TruncDescription
|
Now
| false
| null | null |
cli/cli
|
In cli/cli, determine if `manPrintAliases` and `manPrintOptions` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/manPrintAliases().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/manPrintOptions().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/manPrintAliases().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/manPrintOptions().
|
manPrintAliases
|
manPrintOptions
| false
| null | null |
cli/cli
|
In cli/cli, determine if `RESTPayload` and `StatusStringResponse` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/RESTPayload().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StatusStringResponse().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/RESTPayload().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StatusStringResponse().
|
RESTPayload
|
StatusStringResponse
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ExpectLines` and `Regexp#MatchString` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/test`/ExpectLines().`
- Symbol B: `scip-go gomod github.com/golang/go/src . regexp/Regexp#MatchString().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/test`/ExpectLines().
|
scip-go gomod github.com/golang/go/src . regexp/Regexp#MatchString().
|
ExpectLines
|
Regexp#MatchString
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/test`/ExpectLines().",
"scip-go gomod github.com/golang/go/src . regexp/Regexp#MatchString()."
] |
cli/cli
|
In cli/cli, determine if `isAccessDenied` and `Walk` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/script`/isAccessDenied().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `path/filepath`/Walk().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/script`/isAccessDenied().
|
scip-go gomod github.com/golang/go/src . `path/filepath`/Walk().
|
isAccessDenied
|
Walk
| false
| null | null |
cli/cli
|
In cli/cli, determine if `VerifyCertExtensions` and `NewCmdRoot` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/VerifyCertExtensions().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/VerifyCertExtensions().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
VerifyCertExtensions
|
NewCmdRoot
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation`/NewCmdAttestation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verify`/NewVerifyCmd().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verify`/runVerify().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verify`/verifyAttestations().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/VerifyCertExtensions()."
] |
cli/cli
|
In cli/cli, determine if `deleteRelease` and `NormalizeHostname` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/deleteRelease().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/NormalizeHostname().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/deleteRelease().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/NormalizeHostname().
|
deleteRelease
|
NormalizeHostname
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/deleteRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/NormalizeHostname()."
] |
cli/cli
|
In cli/cli, determine if `Codespace#ExportData` and `common#Errorf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/Codespace#ExportData().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Errorf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/Codespace#ExportData().
|
scip-go gomod github.com/golang/go/src . testing/common#Errorf().
|
Codespace#ExportData
|
common#Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `templateManager#HasTemplates` and `handleResponse` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#HasTemplates().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#HasTemplates().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().
|
templateManager#HasTemplates
|
handleResponse
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#HasTemplates().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#memoizedFetch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/listPullRequestTemplates().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#Query().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse()."
] |
cli/cli
|
In cli/cli, determine if `QueryMatcher` and `T#Run` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/QueryMatcher().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/T#Run().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/QueryMatcher().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
QueryMatcher
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdEdit` and `NewClient` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/TestNewCmdEdit().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/NewClient().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/TestNewCmdEdit().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/NewClient().
|
TestNewCmdEdit
|
NewClient
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/TestNewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/client`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/NewClient()."
] |
cli/cli
|
In cli/cli, determine if `transformSecurityAndAnalysisOpts` and `FlagErrorf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/transformSecurityAndAnalysisOpts().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/transformSecurityAndAnalysisOpts().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().
|
transformSecurityAndAnalysisOpts
|
FlagErrorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdDisable` and `handleResponse` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/disable`/NewCmdDisable().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/disable`/NewCmdDisable().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().
|
NewCmdDisable
|
handleResponse
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/disable`/NewCmdDisable().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/disable`/runDisable().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/ResolveWorkflow().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/GetWorkflows().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#REST().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse()."
] |
cli/cli
|
In cli/cli, determine if `CommentableInteractiveEditSurvey` and `FlagSet#GetString` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveEditSurvey().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#GetString().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveEditSurvey().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#GetString().
|
CommentableInteractiveEditSurvey
|
FlagSet#GetString
| false
| null | null |
cli/cli
|
In cli/cli, determine if `patchEnvVariable` and `FullName` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchEnvVariable().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/FullName().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchEnvVariable().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/FullName().
|
patchEnvVariable
|
FullName
| false
| null | null |
cli/cli
|
In cli/cli, determine if `addJqFlag` and `runCommand` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/addJqFlag().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/runCommand().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/addJqFlag().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/runCommand().
|
addJqFlag
|
runCommand
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/AddJSONFlags().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/addJqFlag()."
] |
cli/cli
|
In cli/cli, determine if `TestMetadataSurvey_selectAll` and `Sprintf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/TestMetadataSurvey_selectAll().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/TestMetadataSurvey_selectAll().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
TestMetadataSurvey_selectAll
|
Sprintf
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/TestMetadataSurvey_selectAll().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/MetadataSurvey().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableUser#DisplayName().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `removeLegacyFromCodeloadPath` and `NewRequest` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/removeLegacyFromCodeloadPath().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/NewRequest().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/removeLegacyFromCodeloadPath().
|
scip-go gomod github.com/golang/go/src . `net/http`/NewRequest().
|
removeLegacyFromCodeloadPath
|
NewRequest
| false
| null | null |
cli/cli
|
In cli/cli, determine if `updateComment` and `createComment` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/updateComment().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/createComment().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/updateComment().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/createComment().
|
updateComment
|
createComment
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunDeleteField_JSON` and `NewClientFromHTTP` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-delete`/TestRunDeleteField_JSON().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-delete`/TestRunDeleteField_JSON().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
|
TestRunDeleteField_JSON
|
NewClientFromHTTP
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-delete`/TestRunDeleteField_JSON().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/NewTestClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP()."
] |
cli/cli
|
In cli/cli, determine if `newCmdList` and `Command#SetIn` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/newCmdList().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/newCmdList().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().
|
newCmdList
|
Command#SetIn
| false
| null | null |
cli/cli
|
In cli/cli, determine if `IOStreams#TerminalTheme` and `TestNewCmdSet` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/TestNewCmdSet().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/TestNewCmdSet().
|
IOStreams#TerminalTheme
|
TestNewCmdSet
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/TestNewCmdSet().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/NewCmdSet().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared`/PromptWhenAmbiguousBaseRepoFunc().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme()."
] |
cli/cli
|
In cli/cli, determine if `getBody` and `Open` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/getBody().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/Open().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/getBody().
|
scip-go gomod github.com/golang/go/src . os/Open().
|
getBody
|
Open
| false
| null | null |
cli/cli
|
In cli/cli, determine if `buildUpdateItem` and `printItemResults` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/buildUpdateItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printItemResults().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/buildUpdateItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printItemResults().
|
buildUpdateItem
|
printItemResults
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdRepo` and `NewCmdHelpTopic` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo`/NewCmdRepo().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdHelpTopic().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo`/NewCmdRepo().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdHelpTopic().
|
NewCmdRepo
|
NewCmdHelpTopic
| false
| null | null |
cli/cli
|
In cli/cli, determine if `editRun` and `NewClientFromHTTP` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/edit`/editRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/edit`/editRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
|
editRun
|
NewClientFromHTTP
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/FetchRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/fetchDraftRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP()."
] |
cli/cli
|
In cli/cli, determine if `statusRun` and `NoArgsQuoteReminder` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/status`/statusRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NoArgsQuoteReminder().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/status`/statusRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NoArgsQuoteReminder().
|
statusRun
|
NoArgsQuoteReminder
| false
| null | null |
cli/cli
|
In cli/cli, determine if `typeForFilename` and `Contains` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/typeForFilename().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Contains().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/typeForFilename().
|
scip-go gomod github.com/golang/go/src . strings/Contains().
|
typeForFilename
|
Contains
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ExtensionManagerMock#InstallCalls` and `Command#SetOut` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/extensions`/ExtensionManagerMock#InstallCalls().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetOut().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/extensions`/ExtensionManagerMock#InstallCalls().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetOut().
|
ExtensionManagerMock#InstallCalls
|
Command#SetOut
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Manager#upgradeExtension` and `Registry#Verify` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#upgradeExtension().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#upgradeExtension().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().
|
Manager#upgradeExtension
|
Registry#Verify
| false
| null | null |
cli/cli
|
In cli/cli, determine if `tempFilePath` and `StringResponse` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/update`/tempFilePath().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/update`/tempFilePath().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().
|
tempFilePath
|
StringResponse
| false
| null | null |
cli/cli
|
In cli/cli, determine if `firstConfiguredKeyPair` and `HasPrefix` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/firstConfiguredKeyPair().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/HasPrefix().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/firstConfiguredKeyPair().
|
scip-go gomod github.com/golang/go/src . strings/HasPrefix().
|
firstConfiguredKeyPair
|
HasPrefix
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/firstConfiguredKeyPair().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/keypairForPrivateKey().",
"scip-go gomod github.com/golang/go/src . strings/HasPrefix()."
] |
cli/cli
|
In cli/cli, determine if `TestRepoList_noVisibilityField` and `IsSome` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_noVisibilityField().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_noVisibilityField().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome().
|
TestRepoList_noVisibilityField
|
IsSome
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_noVisibilityField().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewBlankConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Pager().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdVersion` and `NewCmdVariable` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/version`/NewCmdVersion().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable`/NewCmdVariable().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/version`/NewCmdVersion().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable`/NewCmdVariable().
|
NewCmdVersion
|
NewCmdVariable
| false
| null | null |
cli/cli
|
In cli/cli, determine if `displayIssueResults` and `IOStreams#StopPager` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/shared`/displayIssueResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopPager().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/shared`/displayIssueResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopPager().
|
displayIssueResults
|
IOStreams#StopPager
| false
| null | null |
cli/cli
|
In cli/cli, determine if `extList#InstallSelected` and `IOStreams#StartProgressIndicator` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#InstallSelected().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#InstallSelected().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().
|
extList#InstallSelected
|
IOStreams#StartProgressIndicator
| false
| null | null |
cli/cli
|
In cli/cli, determine if `createRun` and `IOStreams#SetStdoutTTY` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/createRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdoutTTY().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/createRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdoutTTY().
|
createRun
|
IOStreams#SetStdoutTTY
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdDelete` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/delete`/NewCmdDelete().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/delete`/NewCmdDelete().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
NewCmdDelete
|
Command#Flags
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/delete`/NewCmdDelete().",
"scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags()."
] |
cli/cli
|
In cli/cli, determine if `New` and `Main` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/New().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/New().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().
|
New
|
Main
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview`/NewCmdPreview().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/NewCmdPrompter().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/prompterRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/New()."
] |
cli/cli
|
In cli/cli, determine if `CodespacesPortForwarder#ForwardPort` and `AccessControlEntriesToVisibility` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/CodespacesPortForwarder#ForwardPort().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/AccessControlEntriesToVisibility().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/CodespacesPortForwarder#ForwardPort().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/AccessControlEntriesToVisibility().
|
CodespacesPortForwarder#ForwardPort
|
AccessControlEntriesToVisibility
| false
| null | null |
cli/cli
|
In cli/cli, determine if `promptForJob` and `Main` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/promptForJob().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/promptForJob().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().
|
promptForJob
|
Main
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run`/NewCmdRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/runView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/promptForJob()."
] |
cli/cli
|
In cli/cli, determine if `CommentableInteractiveEditSurvey` and `CommentableConfirmSubmitSurvey` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveEditSurvey().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableConfirmSubmitSurvey().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveEditSurvey().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableConfirmSubmitSurvey().
|
CommentableInteractiveEditSurvey
|
CommentableConfirmSubmitSurvey
| false
| null | null |
cli/cli
|
In cli/cli, determine if `makeTestAttestation` and `SigstoreBundle` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact/oci`/makeTestAttestation().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/test/data`/SigstoreBundle().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact/oci`/makeTestAttestation().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/test/data`/SigstoreBundle().
|
makeTestAttestation
|
SigstoreBundle
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact/oci`/makeTestAttestation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/test/data`/SigstoreBundle()."
] |
cli/cli
|
In cli/cli, determine if `TestNewCmdList` and `FlagSet#BoolVar` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/TestNewCmdList().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVar().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/TestNewCmdList().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVar().
|
TestNewCmdList
|
FlagSet#BoolVar
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/TestNewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/NewCmdView().",
"scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVar()."
] |
cli/cli
|
In cli/cli, determine if `runInputHostname` and `runInput` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/runInputHostname().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/runInput().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/runInputHostname().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/preview/prompter`/runInput().
|
runInputHostname
|
runInput
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdImport` and `Command#ExecuteC` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/imports`/NewCmdImport().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#ExecuteC().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/imports`/NewCmdImport().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#ExecuteC().
|
NewCmdImport
|
Command#ExecuteC
| false
| null | null |
cli/cli
|
In cli/cli, determine if `setupJsonFlags` and `addTemplateFlag` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/setupJsonFlags().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/addTemplateFlag().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/setupJsonFlags().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/addTemplateFlag().
|
setupJsonFlags
|
addTemplateFlag
| false
| null | null |
cli/cli
|
In cli/cli, determine if `LogRendererMock#RenderCalls` and `RWMutex#RUnlock` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/LogRendererMock#RenderCalls().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sync/RWMutex#RUnlock().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/LogRendererMock#RenderCalls().
|
scip-go gomod github.com/golang/go/src . sync/RWMutex#RUnlock().
|
LogRendererMock#RenderCalls
|
RWMutex#RUnlock
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/LogRendererMock#RenderCalls().",
"scip-go gomod github.com/golang/go/src . sync/RWMutex#RUnlock()."
] |
cli/cli
|
In cli/cli, determine if `TestTokenStoredInEnv` and `AuthConfig#ActiveUser` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenStoredInEnv().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#ActiveUser().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenStoredInEnv().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#ActiveUser().
|
TestTokenStoredInEnv
|
AuthConfig#ActiveUser
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenStoredInEnv().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#ActiveToken().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#ActiveUser()."
] |
cli/cli
|
In cli/cli, determine if `Test_repoCreate` and `httpResponseWithHeader` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/Test_repoCreate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponseWithHeader().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/Test_repoCreate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponseWithHeader().
|
Test_repoCreate
|
httpResponseWithHeader
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/Test_repoCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQLMutation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponse().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponseWithHeader()."
] |
cli/cli
|
In cli/cli, determine if `enableColorLabelsConfig` and `toConfigEntry` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/enableColorLabelsConfig().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/enableColorLabelsConfig().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry().
|
enableColorLabelsConfig
|
toConfigEntry
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/enableColorLabelsConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GitProtocol().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `Command#SetOut` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetOut().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/list`/NewCmdList().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetOut().
|
NewCmdList
|
Command#SetOut
| false
| null | null |
cli/cli
|
In cli/cli, determine if `nextPage` and `min` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/nextPage().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/min().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/nextPage().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/min().
|
nextPage
|
min
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestListRun` and `EqualFold` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key/list`/TestListRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/EqualFold().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key/list`/TestListRun().
|
scip-go gomod github.com/golang/go/src . strings/EqualFold().
|
TestListRun
|
EqualFold
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key/list`/TestListRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/REST().",
"scip-go gomod github.com/golang/go/src . strings/EqualFold()."
] |
cli/cli
|
In cli/cli, determine if `TestRunCreateField_NUMBER` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_NUMBER().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_NUMBER().
|
scip-go gomod github.com/golang/go/src . errors/New().
|
TestRunCreateField_NUMBER
|
New
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_NUMBER().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/runCreateField().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().",
"scip-go gomod github.com/golang/go/src . errors/New()."
] |
cli/cli
|
In cli/cli, determine if `Extension#CurrentVersion` and `Extension#LatestVersion` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#CurrentVersion().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#LatestVersion().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#CurrentVersion().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#LatestVersion().
|
Extension#CurrentVersion
|
Extension#LatestVersion
| false
| null | null |
cli/cli
|
In cli/cli, determine if `jsonArrayWriter#Close` and `Copy` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/jsonArrayWriter#Close().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/Copy().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/jsonArrayWriter#Close().
|
scip-go gomod github.com/golang/go/src . io/Copy().
|
jsonArrayWriter#Close
|
Copy
| false
| null | null |
cli/cli
|
In cli/cli, determine if `displayIssueResults` and `IOStreams#ColorEnabled` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/shared`/displayIssueResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/shared`/displayIssueResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().
|
displayIssueResults
|
IOStreams#ColorEnabled
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/shared`/displayIssueResults().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#DetectTerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled()."
] |
cli/cli
|
In cli/cli, determine if `Client#doQueryWithProgressIndicator` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().
|
scip-go gomod github.com/golang/go/src . errors/New().
|
Client#doQueryWithProgressIndicator
|
New
| false
| null | null |
cli/cli
|
In cli/cli, determine if `preciseAgo` and `NewCmdRun` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/preciseAgo().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run`/NewCmdRun().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/preciseAgo().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run`/NewCmdRun().
|
preciseAgo
|
NewCmdRun
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run`/NewCmdRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/cancel`/NewCmdCancel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/cancel`/runCancel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/SelectRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/preciseAgo()."
] |
cli/cli
|
In cli/cli, determine if `runAdd` and `Header#Get` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/runAdd().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/runAdd().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
|
runAdd
|
Header#Get
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/runAdd().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/SSHKeyUpload().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/keyUpload().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().",
"scip-go gomod github.com/golang/go/src . `net/http`/Header#Get()."
] |
cli/cli
|
In cli/cli, determine if `setRun` and `FlagErrorf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/setRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/setRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().
|
setRun
|
FlagErrorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_issueList` and `Sprintf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/Test_issueList().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/Test_issueList().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
Test_issueList
|
Sprintf
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/Test_issueList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/issueList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/searchIssues().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `Client#NewOwner` and `printResults` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/close`/printResults().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/close`/printResults().
|
Client#NewOwner
|
printResults
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Manager#Install` and `Mock#AssertExpectations` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#Install().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/mock`/Mock#AssertExpectations().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#Install().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/mock`/Mock#AssertExpectations().
|
Manager#Install
|
Mock#AssertExpectations
| false
| null | null |
cli/cli
|
In cli/cli, determine if `AuthConfig#SwitchUser` and `EqualError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#SwitchUser().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/EqualError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#SwitchUser().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/EqualError().
|
AuthConfig#SwitchUser
|
EqualError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runDownload` and `countLines` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/runDownload().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/countLines().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/runDownload().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/countLines().
|
runDownload
|
countLines
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCachedHTTPClient` and `Header#Set` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Header#Set().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Set().
|
NewCachedHTTPClient
|
Header#Set
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AddCacheTTLHeader().",
"scip-go gomod github.com/golang/go/src . `net/http`/Header#Set()."
] |
cli/cli
|
In cli/cli, determine if `TestCreateRun` and `IOStreams#SetStderrTTY` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestCreateRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStderrTTY().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestCreateRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStderrTTY().
|
TestCreateRun
|
IOStreams#SetStderrTTY
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestCreateRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStderrTTY()."
] |
cli/cli
|
In cli/cli, determine if `CodespaceConnection#Close` and `common#Fatalf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/CodespaceConnection#Close().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Fatalf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/CodespaceConnection#Close().
|
scip-go gomod github.com/golang/go/src . testing/common#Fatalf().
|
CodespaceConnection#Close
|
common#Fatalf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `downloadAsset` and `Is` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadAsset().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/Is().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadAsset().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
downloadAsset
|
Is
| false
| null | null |
cli/cli
|
In cli/cli, determine if `VerifyCertExtensions` and `Error` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/VerifyCertExtensions().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Error().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/VerifyCertExtensions().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Error().
|
VerifyCertExtensions
|
Error
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Absolute#Join` and `ErrorAs` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/Absolute#Join().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/ErrorAs().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/Absolute#Join().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/ErrorAs().
|
Absolute#Join
|
ErrorAs
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunListWeb_User` and `IOStreams#StartProgressIndicatorWithLabel` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/TestRunListWeb_User().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/TestRunListWeb_User().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().
|
TestRunListWeb_User
|
IOStreams#StartProgressIndicatorWithLabel
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/TestRunListWeb_User().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/runList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#Projects().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel()."
] |
cli/cli
|
In cli/cli, determine if `AssignableUser#DisplayName` and `common#Errorf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableUser#DisplayName().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Errorf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableUser#DisplayName().
|
scip-go gomod github.com/golang/go/src . testing/common#Errorf().
|
AssignableUser#DisplayName
|
common#Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdIssues` and `T#Run` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/issues`/TestNewCmdIssues().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/T#Run().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/issues`/TestNewCmdIssues().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
TestNewCmdIssues
|
T#Run
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/issues`/TestNewCmdIssues().",
"scip-go gomod github.com/golang/go/src . testing/T#Run()."
] |
cli/cli
|
In cli/cli, determine if `importRun` and `Getenv` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/imports`/importRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/Getenv().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/imports`/importRun().
|
scip-go gomod github.com/golang/go/src . os/Getenv().
|
importRun
|
Getenv
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/imports`/importRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#DetectTerminalTheme().",
"scip-go gomod github.com/golang/go/src . os/Getenv()."
] |
cli/cli
|
In cli/cli, determine if `MultiAccount#Do` and `NoError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config/migration`/MultiAccount#Do().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config/migration`/MultiAccount#Do().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
|
MultiAccount#Do
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Symbol` and `NewCmdRoot` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/Symbol().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/Symbol().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
Symbol
|
NewCmdRoot
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow`/NewCmdWorkflow().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/runView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/viewWorkflowInfo().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/Symbol()."
] |
cli/cli
|
In cli/cli, determine if `testCloser` and `WithStdout` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter_test`/testCloser().`
- Symbol B: `scip-go gomod github.com/Netflix/go-expect 73e0943537d2 `github.com/Netflix/go-expect`/WithStdout().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter_test`/testCloser().
|
scip-go gomod github.com/Netflix/go-expect 73e0943537d2 `github.com/Netflix/go-expect`/WithStdout().
|
testCloser
|
WithStdout
| false
| null | null |
cli/cli
|
In cli/cli, determine if `issueAssigneeList` and `ReactionGroupList` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/issueAssigneeList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ReactionGroupList().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/issueAssigneeList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ReactionGroupList().
|
issueAssigneeList
|
ReactionGroupList
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdFork` and `Mutex#Unlock` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().
|
scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock().
|
NewCmdFork
|
Mutex#Unlock
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/forkRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().",
"scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock()."
] |
cli/cli
|
In cli/cli, determine if `followLogs` and `IOStreams#StopProgressIndicator` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/create`/followLogs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/create`/followLogs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator().
|
followLogs
|
IOStreams#StopProgressIndicator
| false
| null | null |
cli/cli
|
In cli/cli, determine if `cloneWithRetry` and `Copy` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/cloneWithRetry().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/Copy().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/cloneWithRetry().
|
scip-go gomod github.com/golang/go/src . io/Copy().
|
cloneWithRetry
|
Copy
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/cloneWithRetry().",
"scip-go gomod github.com/golang/go/src . io/Copy()."
] |
cli/cli
|
In cli/cli, determine if `UserKeys` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserKeys().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserKeys().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New().
|
UserKeys
|
New
| false
| null | null |
cli/cli
|
In cli/cli, determine if `cfg#HTTPUnixSocket` and `IsSome` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#HTTPUnixSocket().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#HTTPUnixSocket().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome().
|
cfg#HTTPUnixSocket
|
IsSome
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#HTTPUnixSocket().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/IsSome()."
] |
cli/cli
|
In cli/cli, determine if `ReactionGroupList` and `formatReactionGroup` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ReactionGroupList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/formatReactionGroup().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ReactionGroupList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/formatReactionGroup().
|
ReactionGroupList
|
formatReactionGroup
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ReactionGroupList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/formatReactionGroup()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdToken` and `NewCmdStatus` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/token`/NewCmdToken().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/NewCmdStatus().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/token`/NewCmdToken().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/NewCmdStatus().
|
NewCmdToken
|
NewCmdStatus
| false
| null | null |
cli/cli
|
In cli/cli, determine if `issueTransfer` and `Fprintln` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/transfer`/issueTransfer().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintln().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/transfer`/issueTransfer().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
issueTransfer
|
Fprintln
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mapRepoNamesToIDs` and `TrimPrefix` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/TrimPrefix().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().
|
scip-go gomod github.com/golang/go/src . strings/TrimPrefix().
|
mapRepoNamesToIDs
|
TrimPrefix
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/NewWithHost().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/normalizeHostname().",
"scip-go gomod github.com/golang/go/src . strings/TrimPrefix()."
] |
cli/cli
|
In cli/cli, determine if `codeRun` and `IOStreams#AccessibleColorsEnabled` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/codeRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/codeRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled().
|
codeRun
|
IOStreams#AccessibleColorsEnabled
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/codeRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/displayResults().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled()."
] |
cli/cli
|
In cli/cli, determine if `handlePush` and `NewCreateContext` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/handlePush().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewCreateContext().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/handlePush().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewCreateContext().
|
handlePush
|
NewCreateContext
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewIssueState` and `generateCompareURL` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewIssueState().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/generateCompareURL().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewIssueState().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/generateCompareURL().
|
NewIssueState
|
generateCompareURL
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestGenMdDocWithNoLongOrSynopsis` and `Command#Name` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/TestGenMdDocWithNoLongOrSynopsis().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Name().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/TestGenMdDocWithNoLongOrSynopsis().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Name().
|
TestGenMdDocWithNoLongOrSynopsis
|
Command#Name
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/TestGenMdDocWithNoLongOrSynopsis().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/genMarkdownCustom().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/printAliases().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/BuildAliasList().",
"scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Name()."
] |
cli/cli
|
In cli/cli, determine if `publishRelease` and `ConcurrentUpload` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/publishRelease().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/ConcurrentUpload().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/publishRelease().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/ConcurrentUpload().
|
publishRelease
|
ConcurrentUpload
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mockPullRequestUpdate` and `ReadAll` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/mockPullRequestUpdate().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/ReadAll().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/mockPullRequestUpdate().
|
scip-go gomod github.com/golang/go/src . io/ReadAll().
|
mockPullRequestUpdate
|
ReadAll
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/mockPullRequestUpdate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/decodeJSONBody().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/readBody().",
"scip-go gomod github.com/golang/go/src . io/ReadAll()."
] |
cli/cli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.