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 `deleteRun` and `ColorScheme#Red` 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`/deleteRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Red().`
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`/deleteRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Red().
|
deleteRun
|
ColorScheme#Red
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/delete`/deleteRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Red()."
] |
cli/cli
|
In cli/cli, determine if `defaultConfig` 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/factory`/defaultConfig().`
- 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/factory`/defaultConfig().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
defaultConfig
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `promptForJob` and `ColorScheme#FailureIconWithColor` 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/pkg/iostreams`/ColorScheme#FailureIconWithColor().`
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/pkg/iostreams`/ColorScheme#FailureIconWithColor().
|
promptForJob
|
ColorScheme#FailureIconWithColor
| true
| 2
|
[
"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/pkg/cmd/run/shared`/Symbol().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#FailureIconWithColor()."
] |
cli/cli
|
In cli/cli, determine if `formatNameForVSCSTarget` 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/codespace`/formatNameForVSCSTarget().`
- 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/codespace`/formatNameForVSCSTarget().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
formatNameForVSCSTarget
|
NewCmdRoot
| true
| 4
|
[
"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/codespace`/NewCmdCodespace().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newListCmd().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#List().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/formatNameForVSCSTarget()."
] |
cli/cli
|
In cli/cli, determine if `runDeleteItem` and `IOStreams#IsStdoutTTY` 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-delete`/runDeleteItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY().`
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-delete`/runDeleteItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY().
|
runDeleteItem
|
IOStreams#IsStdoutTTY
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-delete`/runDeleteItem().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-delete`/printResults().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY()."
] |
cli/cli
|
In cli/cli, determine if `printResults` and `buildURL` 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`/printResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/buildURL().`
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`/printResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/buildURL().
|
printResults
|
buildURL
| false
| null | null |
cli/cli
|
In cli/cli, determine if `editRun` and `TrimSpace` 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`/editRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/TrimSpace().`
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`/editRun().
|
scip-go gomod github.com/golang/go/src . strings/TrimSpace().
|
editRun
|
TrimSpace
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/FetchRepository().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#GraphQL().",
"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/golang/go/src . strings/TrimSpace()."
] |
cli/cli
|
In cli/cli, determine if `handleResponse` and `NewGraphQLClient` 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`/handleResponse().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().`
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`/handleResponse().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().
|
handleResponse
|
NewGraphQLClient
| false
| null | null |
cli/cli
|
In cli/cli, determine if `IOStreams#IsStdinTTY` and `NewCmdIssue` 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#IsStdinTTY().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue`/NewCmdIssue().`
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#IsStdinTTY().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue`/NewCmdIssue().
|
IOStreams#IsStdinTTY
|
NewCmdIssue
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue`/NewCmdIssue().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/NewCmdDelete().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/deleteRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdinTTY()."
] |
cli/cli
|
In cli/cli, determine if `App#StartProgressIndicatorWithLabel` and `PollPostCreateStates` 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`/App#StartProgressIndicatorWithLabel().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces`/PollPostCreateStates().`
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`/App#StartProgressIndicatorWithLabel().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces`/PollPostCreateStates().
|
App#StartProgressIndicatorWithLabel
|
PollPostCreateStates
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewLiveClient` 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/artifact/oci`/NewLiveClient().`
- 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/artifact/oci`/NewLiveClient().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
NewLiveClient
|
NewCmdRoot
| true
| 3
|
[
"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/artifact/oci`/NewLiveClient()."
] |
cli/cli
|
In cli/cli, determine if `getGPGKeys` and `IOStreams#ColorScheme` 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/gpg-key/delete`/getGPGKeys().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().`
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/gpg-key/delete`/getGPGKeys().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
getGPGKeys
|
IOStreams#ColorScheme
| false
| null | null |
cli/cli
|
In cli/cli, determine if `StatusGetter#HasAuthErrors` and `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/status`/StatusGetter#HasAuthErrors().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/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/status`/StatusGetter#HasAuthErrors().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/run().
|
StatusGetter#HasAuthErrors
|
run
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/run().",
"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/status`/NewCmdStatus().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/status`/statusRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/status`/StatusGetter#HasAuthErrors()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdMerge` 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/pr/merge`/NewCmdMerge().`
- 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/pr/merge`/NewCmdMerge().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#ExecuteC().
|
NewCmdMerge
|
Command#ExecuteC
| false
| null | null |
cli/cli
|
In cli/cli, determine if `printPrs` and `PullRequestFindRefsResolver#ResolvePullRequestRefs` 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/status`/printPrs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/PullRequestFindRefsResolver#ResolvePullRequestRefs().`
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/status`/printPrs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/PullRequestFindRefsResolver#ResolvePullRequestRefs().
|
printPrs
|
PullRequestFindRefsResolver#ResolvePullRequestRefs
| false
| null | null |
cli/cli
|
In cli/cli, determine if `enableSpinnersConfig` 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/factory`/enableSpinnersConfig().`
- 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/factory`/enableSpinnersConfig().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
enableSpinnersConfig
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `isUp` and `FromFullName` 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/garden`/isUp().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/FromFullName().`
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/garden`/isUp().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/FromFullName().
|
isUp
|
FromFullName
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `IOStreams#ColorScheme` 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/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().`
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/list`/NewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
NewCmdList
|
IOStreams#ColorScheme
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/list`/NewCmdList().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `AssignableBot#DisplayName` 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/api`/AssignableBot#DisplayName().`
- 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/api`/AssignableBot#DisplayName().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
AssignableBot#DisplayName
|
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/issue`/NewCmdIssue().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignedActors#DisplayNames().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableBot#DisplayName()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdClose` and `NewCmdCreateField` 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/close`/NewCmdClose().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/NewCmdCreateField().`
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/close`/NewCmdClose().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/NewCmdCreateField().
|
NewCmdClose
|
NewCmdCreateField
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#UnlinkProjectFromRepository` and `handleError` 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#UnlinkProjectFromRepository().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/handleError().`
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#UnlinkProjectFromRepository().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/handleError().
|
Client#UnlinkProjectFromRepository
|
handleError
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#UnlinkProjectFromRepository().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#Mutate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/handleError()."
] |
cli/cli
|
In cli/cli, determine if `TestPRList` 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/list`/TestPRList().`
- 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/list`/TestPRList().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
TestPRList
|
Sprintf
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/TestPRList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/NewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/listRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/GenerateRepoURL().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `handleResponse` and `Test_refreshRun` 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`/handleResponse().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/Test_refreshRun().`
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`/handleResponse().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/Test_refreshRun().
|
handleResponse
|
Test_refreshRun
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/Test_refreshRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/refreshRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared`/GetScopes().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `Find` and `LookPath` 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/findsh`/Find().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `os/exec`/LookPath().`
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/findsh`/Find().
|
scip-go gomod github.com/golang/go/src . `os/exec`/LookPath().
|
Find
|
LookPath
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/findsh`/Find().",
"scip-go gomod github.com/golang/go/src . `os/exec`/LookPath()."
] |
cli/cli
|
In cli/cli, determine if `extList#InstallSelected` and `List#AddItem` 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/rivo/tview v0.42.0 `github.com/rivo/tview`/List#AddItem().`
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/rivo/tview v0.42.0 `github.com/rivo/tview`/List#AddItem().
|
extList#InstallSelected
|
List#AddItem
| true
| 5
|
[
"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/cmd/extension/browse`/extList#toggleSelected().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#createModal().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#Refresh().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#Filter().",
"scip-go gomod github.com/rivo/tview v0.42.0 `github.com/rivo/tview`/List#AddItem()."
] |
cli/cli
|
In cli/cli, determine if `RepoMetadataResult#TeamsToIDs` and `RepoMetadataResult#MembersToIDs` 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`/RepoMetadataResult#TeamsToIDs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#MembersToIDs().`
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`/RepoMetadataResult#TeamsToIDs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#MembersToIDs().
|
RepoMetadataResult#TeamsToIDs
|
RepoMetadataResult#MembersToIDs
| false
| null | null |
cli/cli
|
In cli/cli, determine if `rerunJob` and `Fprintf` 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/rerun`/rerunJob().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintf().`
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/rerun`/rerunJob().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintf().
|
rerunJob
|
Fprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `repoExists` and `hasScript` 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`/repoExists().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/hasScript().`
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`/repoExists().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/hasScript().
|
repoExists
|
hasScript
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ProjectsV2IgnorableError` and `Test_NewCmdLock` 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`/ProjectsV2IgnorableError().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_NewCmdLock().`
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`/ProjectsV2IgnorableError().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_NewCmdLock().
|
ProjectsV2IgnorableError
|
Test_NewCmdLock
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_NewCmdLock().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/NewCmdLock().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/lockRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssueOrPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/ProjectsV2IgnorableError()."
] |
cli/cli
|
In cli/cli, determine if `getUserKeys` and `RESTPrefix` 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`/getUserKeys().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix().`
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`/getUserKeys().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix().
|
getUserKeys
|
RESTPrefix
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNoArgs` and `IOStreams#SetStdinTTY` 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/close`/TestNoArgs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().`
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/close`/TestNoArgs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().
|
TestNoArgs
|
IOStreams#SetStdinTTY
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/TestNoArgs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/runCommand().",
"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#SetStdinTTY()."
] |
cli/cli
|
In cli/cli, determine if `getGPGKeys` and `Fprintf` 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/gpg-key/delete`/getGPGKeys().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintf().`
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/gpg-key/delete`/getGPGKeys().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintf().
|
getGPGKeys
|
Fprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `SSOURL` and `isExtensionCommand` 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`/SSOURL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/isExtensionCommand().`
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`/SSOURL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/isExtensionCommand().
|
SSOURL
|
isExtensionCommand
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_parseFields_nested` and `Doc` 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`/Test_parseFields_nested().`
- Symbol B: `scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc().`
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`/Test_parseFields_nested().
|
scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc().
|
Test_parseFields_nested
|
Doc
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_parseFields_nested().",
"scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc()."
] |
cli/cli
|
In cli/cli, determine if `hasActiveToken` and `True` 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/logout`/hasActiveToken().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/True().`
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/logout`/hasActiveToken().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/True().
|
hasActiveToken
|
True
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `NewCmdGet` 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/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/get`/NewCmdGet().`
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/list`/NewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/get`/NewCmdGet().
|
NewCmdList
|
NewCmdGet
| false
| null | null |
cli/cli
|
In cli/cli, determine if `escapePath` and `TrimSuffix` 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/browse`/escapePath().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/TrimSuffix().`
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/browse`/escapePath().
|
scip-go gomod github.com/golang/go/src . strings/TrimSuffix().
|
escapePath
|
TrimSuffix
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TextMatch#ExportData` and `fieldByName` 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`/TextMatch#ExportData().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/fieldByName().`
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`/TextMatch#ExportData().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/fieldByName().
|
TextMatch#ExportData
|
fieldByName
| false
| null | null |
cli/cli
|
In cli/cli, determine if `clearCacheRun` and `Buffer#String` 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/config/clear-cache`/clearCacheRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . bytes/Buffer#String().`
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/config/clear-cache`/clearCacheRun().
|
scip-go gomod github.com/golang/go/src . bytes/Buffer#String().
|
clearCacheRun
|
Buffer#String
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runDelete` 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/run/delete`/runDelete().`
- 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/run/delete`/runDelete().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().
|
runDelete
|
handleResponse
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/delete`/runDelete().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/GetWorkflow().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/getWorkflowByID().",
"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 `TestKramdownCompatibleDocs` and `ParseInt` 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/root`/TestKramdownCompatibleDocs().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strconv/ParseInt().`
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/root`/TestKramdownCompatibleDocs().
|
scip-go gomod github.com/golang/go/src . strconv/ParseInt().
|
TestKramdownCompatibleDocs
|
ParseInt
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().",
"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/project`/NewCmdProject().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/NewCmdList().",
"scip-go gomod github.com/golang/go/src . strconv/ParseInt()."
] |
cli/cli
|
In cli/cli, determine if `TestPRCheckout_differentRepo_remoteExists` 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/checkout`/TestPRCheckout_differentRepo_remoteExists().`
- 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/checkout`/TestPRCheckout_differentRepo_remoteExists().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
TestPRCheckout_differentRepo_remoteExists
|
Sprintf
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/TestPRCheckout_differentRepo_remoteExists().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/NewCmdCheckout().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/checkoutRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/cmdsForExistingRemote().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `downloadAsset` and `fetchLatestRelease` 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`/downloadAsset().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/fetchLatestRelease().`
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`/downloadAsset().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/fetchLatestRelease().
|
downloadAsset
|
fetchLatestRelease
| false
| null | null |
cli/cli
|
In cli/cli, determine if `testTerminal#ResetOutput` and `testLookPath` 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/surveyext`/testTerminal#ResetOutput().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/surveyext`/testLookPath().`
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/surveyext`/testTerminal#ResetOutput().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/surveyext`/testLookPath().
|
testTerminal#ResetOutput
|
testLookPath
| false
| null | null |
cli/cli
|
In cli/cli, determine if `PullRequestForRun` and `GetRun` 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`/PullRequestForRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRun().`
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`/PullRequestForRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRun().
|
PullRequestForRun
|
GetRun
| false
| null | null |
cli/cli
|
In cli/cli, determine if `listRun` 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/config/list`/listRun().`
- 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/config/list`/listRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
listRun
|
NewCmdRoot
| true
| 3
|
[
"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/config`/NewCmdConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/list`/NewCmdConfigList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/list`/listRun()."
] |
cli/cli
|
In cli/cli, determine if `TestManager_Dispatch` and `cfg#AccessiblePrompter` 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`/TestManager_Dispatch().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#AccessiblePrompter().`
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`/TestManager_Dispatch().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#AccessiblePrompter().
|
TestManager_Dispatch
|
cfg#AccessiblePrompter
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestManager_Dispatch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/newTestManager().",
"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#AccessiblePrompter()."
] |
cli/cli
|
In cli/cli, determine if `setRun` and `IOStreams#TerminalTheme` 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`/setRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().`
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`/setRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().
|
setRun
|
IOStreams#TerminalTheme
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/setRun().",
"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 `getCurrentUsername` and `GraphQL` 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/status`/getCurrentUsername().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQL().`
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/status`/getCurrentUsername().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQL().
|
getCurrentUsername
|
GraphQL
| false
| null | null |
cli/cli
|
In cli/cli, determine if `apiPlatform#List` and `Equal` 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/download`/apiPlatform#List().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().`
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/download`/apiPlatform#List().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().
|
apiPlatform#List
|
Equal
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdEdit` and `Regexp#FindStringSubmatch` 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`/TestNewCmdEdit().`
- Symbol B: `scip-go gomod github.com/golang/go/src . regexp/Regexp#FindStringSubmatch().`
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`/TestNewCmdEdit().
|
scip-go gomod github.com/golang/go/src . regexp/Regexp#FindStringSubmatch().
|
TestNewCmdEdit
|
Regexp#FindStringSubmatch
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/TestNewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ParseURL().",
"scip-go gomod github.com/golang/go/src . regexp/Regexp#FindStringSubmatch()."
] |
cli/cli
|
In cli/cli, determine if `AddGroup` and `NewCmdVerifyAsset` 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`/AddGroup().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/NewCmdVerifyAsset().`
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`/AddGroup().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/NewCmdVerifyAsset().
|
AddGroup
|
NewCmdVerifyAsset
| false
| null | null |
cli/cli
|
In cli/cli, determine if `chooseCodespaceFromList` and `confirmDeletion` 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`/chooseCodespaceFromList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/confirmDeletion().`
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`/chooseCodespaceFromList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/confirmDeletion().
|
chooseCodespaceFromList
|
confirmDeletion
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runCommand` and `ColorScheme#FailureIcon` 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/close`/runCommand().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#FailureIcon().`
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/close`/runCommand().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#FailureIcon().
|
runCommand
|
ColorScheme#FailureIcon
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/NewCmdClose().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/closeRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#FailureIcon()."
] |
cli/cli
|
In cli/cli, determine if `TestClientRemotes` and `isSupportedProtocol` 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/git`/TestClientRemotes().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol().`
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/git`/TestClientRemotes().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol().
|
TestClientRemotes
|
isSupportedProtocol
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientRemotes().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Remotes().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/parseRemotes().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/ParseURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isPossibleProtocol().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol()."
] |
cli/cli
|
In cli/cli, determine if `LiveClient#fetchBundleFromAttestations` and `Nil` 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/api`/LiveClient#fetchBundleFromAttestations().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Nil().`
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/api`/LiveClient#fetchBundleFromAttestations().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Nil().
|
LiveClient#fetchBundleFromAttestations
|
Nil
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdView` and `isCygwinTerminal` 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/view`/NewCmdView().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/isCygwinTerminal().`
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/view`/NewCmdView().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/isCygwinTerminal().
|
NewCmdView
|
isCygwinTerminal
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/view`/viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartPager().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/isCygwinTerminal()."
] |
cli/cli
|
In cli/cli, determine if `newMockGitClient` 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/repo/sync`/newMockGitClient().`
- 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/repo/sync`/newMockGitClient().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
newMockGitClient
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#SetBranchConfig` 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/git`/Client#SetBranchConfig().`
- 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/git`/Client#SetBranchConfig().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().
|
Client#SetBranchConfig
|
IOStreams#StartProgressIndicator
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdview` and `Equal` 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/view`/TestNewCmdview().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().`
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/view`/TestNewCmdview().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().
|
TestNewCmdview
|
Equal
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/TestNewCmdview().",
"scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal()."
] |
cli/cli
|
In cli/cli, determine if `extEntry#Title` 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/extension/browse`/extEntry#Title().`
- Symbol B: `scip-go gomod github.com/golang/go/src . log/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/extension/browse`/extEntry#Title().
|
scip-go gomod github.com/golang/go/src . log/New().
|
extEntry#Title
|
New
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdAlias` 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/alias`/NewCmdAlias().`
- 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/alias`/NewCmdAlias().
|
scip-go gomod github.com/golang/go/src . io/ReadAll().
|
NewCmdAlias
|
ReadAll
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias`/NewCmdAlias().",
"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/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/cmdutil`/ReadFile().",
"scip-go gomod github.com/golang/go/src . io/ReadAll()."
] |
cli/cli
|
In cli/cli, determine if `twoRemotesStubFn` 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/secret/shared_test`/twoRemotesStubFn().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/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/secret/shared_test`/twoRemotesStubFn().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/New().
|
twoRemotesStubFn
|
New
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared_test`/twoRemotesStubFn().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/New()."
] |
cli/cli
|
In cli/cli, determine if `TestCmdHelpTopic` and `Command#SetHelpFunc` 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/root`/TestCmdHelpTopic().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetHelpFunc().`
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/root`/TestCmdHelpTopic().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetHelpFunc().
|
TestCmdHelpTopic
|
Command#SetHelpFunc
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestCmdHelpTopic().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdHelpTopic().",
"scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetHelpFunc()."
] |
cli/cli
|
In cli/cli, determine if `resolveOwner` and `InitRepoHostname` 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`/resolveOwner().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/InitRepoHostname().`
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`/resolveOwner().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/InitRepoHostname().
|
resolveOwner
|
InitRepoHostname
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getSecretsFromOptions` and `IOStreams#SetStdinTTY` 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`/getSecretsFromOptions().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().`
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`/getSecretsFromOptions().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().
|
getSecretsFromOptions
|
IOStreams#SetStdinTTY
| false
| null | null |
cli/cli
|
In cli/cli, determine if `enableAccessiblePrompterConfig` and `defaultFor` 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`/enableAccessiblePrompterConfig().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/defaultFor().`
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`/enableAccessiblePrompterConfig().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/defaultFor().
|
enableAccessiblePrompterConfig
|
defaultFor
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/enableAccessiblePrompterConfig().",
"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#AccessibleColors().",
"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`/defaultFor()."
] |
cli/cli
|
In cli/cli, determine if `ListNoResults` 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/cmd/pr/shared`/ListNoResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/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/cmd/pr/shared`/ListNoResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/runCommand().
|
ListNoResults
|
runCommand
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/NewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/list`/listRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ListNoResults()."
] |
cli/cli
|
In cli/cli, determine if `TestParseCloneArgs` 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/git`/TestParseCloneArgs().`
- 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/git`/TestParseCloneArgs().
|
scip-go gomod github.com/golang/go/src . strings/HasPrefix().
|
TestParseCloneArgs
|
HasPrefix
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestParseCloneArgs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/parseCloneArgs().",
"scip-go gomod github.com/golang/go/src . strings/HasPrefix()."
] |
cli/cli
|
In cli/cli, determine if `printDraftIssueResults` 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/project/item-edit`/printDraftIssueResults().`
- 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/project/item-edit`/printDraftIssueResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
printDraftIssueResults
|
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/project`/NewCmdProject().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/NewCmdEditItem().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/runEditItem().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/updateDraftIssue().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printDraftIssueResults()."
] |
cli/cli
|
In cli/cli, determine if `Client#SetRemoteBranches` and `Client#SetRemoteResolution` 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/git`/Client#SetRemoteBranches().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#SetRemoteResolution().`
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/git`/Client#SetRemoteBranches().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#SetRemoteResolution().
|
Client#SetRemoteBranches
|
Client#SetRemoteResolution
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdRepos` and `Join` 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/repos`/NewCmdRepos().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Join().`
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/repos`/NewCmdRepos().
|
scip-go gomod github.com/golang/go/src . strings/Join().
|
NewCmdRepos
|
Join
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/repos`/NewCmdRepos().",
"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`/setupJsonFlags().",
"scip-go gomod github.com/golang/go/src . strings/Join()."
] |
cli/cli
|
In cli/cli, determine if `Test_NewCmdStatus` and `Docf` 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/status`/Test_NewCmdStatus().`
- Symbol B: `scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf().`
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/status`/Test_NewCmdStatus().
|
scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf().
|
Test_NewCmdStatus
|
Docf
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/Test_NewCmdStatus().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/NewCmdStatus().",
"scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf()."
] |
cli/cli
|
In cli/cli, determine if `main` and `MainStart` 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/diff.test`/main().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/MainStart().`
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/diff.test`/main().
|
scip-go gomod github.com/golang/go/src . testing/MainStart().
|
main
|
MainStart
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/diff.test`/main().",
"scip-go gomod github.com/golang/go/src . testing/MainStart()."
] |
cli/cli
|
In cli/cli, determine if `getUserSecrets` 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/secret/list`/getUserSecrets().`
- 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/secret/list`/getUserSecrets().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
|
getUserSecrets
|
Header#Get
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/list`/getUserSecrets().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/list`/getSecrets().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#RESTWithNext().",
"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 `NewCmdDownload` and `EnableRepoOverride` 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`/NewCmdDownload().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().`
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`/NewCmdDownload().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().
|
NewCmdDownload
|
EnableRepoOverride
| false
| null | null |
cli/cli
|
In cli/cli, determine if `developRunCreate` and `FindIssueOrPR` 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/develop`/developRunCreate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssueOrPR().`
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/develop`/developRunCreate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssueOrPR().
|
developRunCreate
|
FindIssueOrPR
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestPRReview_interactive` and `StubFinderForRunCommandStyleTests` 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/review`/TestPRReview_interactive().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/StubFinderForRunCommandStyleTests().`
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/review`/TestPRReview_interactive().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/StubFinderForRunCommandStyleTests().
|
TestPRReview_interactive
|
StubFinderForRunCommandStyleTests
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/TestPRReview_interactive().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/StubFinderForRunCommandStyleTests()."
] |
cli/cli
|
In cli/cli, determine if `TestCredentialPatternFromGitURL` and `isSupportedProtocol` 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/git`/TestCredentialPatternFromGitURL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol().`
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/git`/TestCredentialPatternFromGitURL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol().
|
TestCredentialPatternFromGitURL
|
isSupportedProtocol
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestCredentialPatternFromGitURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/CredentialPatternFromGitURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/ParseURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isPossibleProtocol().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isSupportedProtocol()."
] |
cli/cli
|
In cli/cli, determine if `PrintHeader` and `Fprintf` 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`/PrintHeader().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintf().`
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`/PrintHeader().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintf().
|
PrintHeader
|
Fprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `QueryHasStateClause` and `NewCachedHTTPClient` 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`/QueryHasStateClause().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().`
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`/QueryHasStateClause().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().
|
QueryHasStateClause
|
NewCachedHTTPClient
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#GraphQL` and `Test_setRun_user` 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`/Client#GraphQL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_user().`
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`/Client#GraphQL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_user().
|
Client#GraphQL
|
Test_setRun_user
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_user().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/setRun().",
"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/api`/GetRepoIDs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#GraphQL()."
] |
cli/cli
|
In cli/cli, determine if `IsBinaryContents` and `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/pkg/cmd/gist/shared`/IsBinaryContents().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/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/pkg/cmd/gist/shared`/IsBinaryContents().
|
scip-go gomod github.com/golang/go/src . fmt/Errorf().
|
IsBinaryContents
|
Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdSSHKey` and `HandleHTTPError` 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`/NewCmdSSHKey().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().`
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`/NewCmdSSHKey().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().
|
NewCmdSSHKey
|
HandleHTTPError
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key`/NewCmdSSHKey().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/NewCmdAdd().",
"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`/SSHSigningKeyUpload().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdEdit` and `NewCmdCreate` 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`/NewCmdEdit().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/NewCmdCreate().`
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`/NewCmdEdit().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/NewCmdCreate().
|
NewCmdEdit
|
NewCmdCreate
| false
| null | null |
cli/cli
|
In cli/cli, determine if `StatusStringResponse` and `NopCloser` 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`/StatusStringResponse().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/NopCloser().`
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`/StatusStringResponse().
|
scip-go gomod github.com/golang/go/src . io/NopCloser().
|
StatusStringResponse
|
NopCloser
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StatusStringResponse().",
"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().",
"scip-go gomod github.com/golang/go/src . io/NopCloser()."
] |
cli/cli
|
In cli/cli, determine if `NewTestClient` and `Request#JSON` 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`/NewTestClient().`
- Symbol B: `scip-go gomod gopkg.in/h2non/gock.v1 v1.1.2 `gopkg.in/h2non/gock.v1`/Request#JSON().`
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`/NewTestClient().
|
scip-go gomod gopkg.in/h2non/gock.v1 v1.1.2 `gopkg.in/h2non/gock.v1`/Request#JSON().
|
NewTestClient
|
Request#JSON
| false
| null | null |
cli/cli
|
In cli/cli, determine if `CurrentUserID` and `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`/CurrentUserID().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/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`/CurrentUserID().
|
scip-go gomod github.com/golang/go/src . fmt/Errorf().
|
CurrentUserID
|
Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestClientUpdateRemoteURL` 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/git`/TestClientUpdateRemoteURL().`
- 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/git`/TestClientUpdateRemoteURL().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
TestClientUpdateRemoteURL
|
Is
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientUpdateRemoteURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#UpdateRemoteURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Command().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/resolveGitPath().",
"scip-go gomod github.com/golang/go/src . errors/Is()."
] |
cli/cli
|
In cli/cli, determine if `Extension#Name` and `Cmd#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/extension`/Extension#Name().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `os/exec`/Cmd#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/extension`/Extension#Name().
|
scip-go gomod github.com/golang/go/src . `os/exec`/Cmd#Run().
|
Extension#Name
|
Cmd#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `localGitClient#LastCommit` and `LookPath` 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/browse`/localGitClient#LastCommit().`
- Symbol B: `scip-go gomod github.com/cli/safeexec v1.0.1 `github.com/cli/safeexec`/LookPath().`
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/browse`/localGitClient#LastCommit().
|
scip-go gomod github.com/cli/safeexec v1.0.1 `github.com/cli/safeexec`/LookPath().
|
localGitClient#LastCommit
|
LookPath
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/localGitClient#LastCommit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#LastCommit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#lookupCommit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Command().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/resolveGitPath().",
"scip-go gomod github.com/cli/safeexec v1.0.1 `github.com/cli/safeexec`/LookPath()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdView` 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/pkg/cmd/repo/autolink/view`/NewCmdView().`
- 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/pkg/cmd/repo/autolink/view`/NewCmdView().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
|
NewCmdView
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getFilesToRemove` 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/gist/edit`/getFilesToRemove().`
- 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/gist/edit`/getFilesToRemove().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
getFilesToRemove
|
NewCmdRoot
| true
| 4
|
[
"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/gist`/NewCmdGist().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/getFilesToRemove()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdMerge` and `NewFinder` 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/merge`/NewCmdMerge().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewFinder().`
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/merge`/NewCmdMerge().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewFinder().
|
NewCmdMerge
|
NewFinder
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/NewCmdMerge().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewFinder()."
] |
cli/cli
|
In cli/cli, determine if `waitForEnter` 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/pr/shared`/waitForEnter().`
- 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/pr/shared`/waitForEnter().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghcmd`/Main().
|
waitForEnter
|
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/pr`/NewCmdPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/comment`/NewCmdComment().",
"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`/waitForEnter()."
] |
cli/cli
|
In cli/cli, determine if `mockIsssueNumberGetWithAssignedActors` and `decodeJSONBody` 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/edit`/mockIsssueNumberGetWithAssignedActors().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/decodeJSONBody().`
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/edit`/mockIsssueNumberGetWithAssignedActors().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/decodeJSONBody().
|
mockIsssueNumberGetWithAssignedActors
|
decodeJSONBody
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/mockIsssueNumberGetWithAssignedActors().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `groupWithOR` 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/search`/groupWithOR().`
- Symbol B: `scip-go gomod github.com/golang/go/src . slices/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/search`/groupWithOR().
|
scip-go gomod github.com/golang/go/src . slices/Contains().
|
groupWithOR
|
Contains
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewDigestedArtifact` 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/artifact`/NewDigestedArtifact().`
- 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/artifact`/NewDigestedArtifact().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Error().
|
NewDigestedArtifact
|
Error
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_getBodyPrompt` and `common#Helper` 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`/Test_getBodyPrompt().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Helper().`
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`/Test_getBodyPrompt().
|
scip-go gomod github.com/golang/go/src . testing/common#Helper().
|
Test_getBodyPrompt
|
common#Helper
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_getBodyPrompt().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/NewMockPrompter().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/MockPrompter#Verify().",
"scip-go gomod github.com/golang/go/src . testing/common#Helper()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdDelete` 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/cache/delete`/NewCmdDelete().`
- 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/cache/delete`/NewCmdDelete().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().
|
NewCmdDelete
|
FlagErrorf
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/cache/delete`/NewCmdDelete().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/MutuallyExclusive().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf()."
] |
cli/cli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.