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 `TestClientGitDir` and `EqualError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientGitDir().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/EqualError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientGitDir().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/EqualError().
|
TestClientGitDir
|
EqualError
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientGitDir().",
"scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/EqualError()."
] |
cli/cli
|
In cli/cli, determine if `TestNewCmdCreate` and `Fprintln` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/create`/TestNewCmdCreate().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintln().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/create`/TestNewCmdCreate().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
TestNewCmdCreate
|
Fprintln
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/create`/TestNewCmdCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/create`/NewCmdCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/create`/createRun().",
"scip-go gomod github.com/golang/go/src . fmt/Fprintln()."
] |
cli/cli
|
In cli/cli, determine if `viewRun` and `TestKramdownCompatibleDocs` 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`/viewRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().`
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`/viewRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().
|
viewRun
|
TestKramdownCompatibleDocs
| true
| 5
|
[
"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/repo`/NewCmdRepo().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink`/NewCmdAutolink().",
"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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/view`/viewRun()."
] |
cli/cli
|
In cli/cli, determine if `normalizeReference` and `Test_verifyAssetRun_FailedTagNotInAttestation` 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`/normalizeReference().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/Test_verifyAssetRun_FailedTagNotInAttestation().`
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`/normalizeReference().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/Test_verifyAssetRun_FailedTagNotInAttestation().
|
normalizeReference
|
Test_verifyAssetRun_FailedTagNotInAttestation
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/Test_verifyAssetRun_FailedTagNotInAttestation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/verify-asset`/verifyAssetRun().",
"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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact`/normalizeReference()."
] |
cli/cli
|
In cli/cli, determine if `relativeFilePath` and `renderContentAsJSONMarkdown` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/relativeFilePath().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/renderContentAsJSONMarkdown().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/relativeFilePath().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/renderContentAsJSONMarkdown().
|
relativeFilePath
|
renderContentAsJSONMarkdown
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#Pull` and `createMockedCommandContext` 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#Pull().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/createMockedCommandContext().`
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#Pull().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/createMockedCommandContext().
|
Client#Pull
|
createMockedCommandContext
| false
| null | null |
cli/cli
|
In cli/cli, determine if `createTestInvoker` and `WithTimeout` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/createTestInvoker().`
- Symbol B: `scip-go gomod github.com/golang/go/src . context/WithTimeout().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/createTestInvoker().
|
scip-go gomod github.com/golang/go/src . context/WithTimeout().
|
createTestInvoker
|
WithTimeout
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/createTestInvoker().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/CreateInvoker().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/connect().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/invoker#notifyCodespaceOfClientActivity().",
"scip-go gomod github.com/golang/go/src . context/WithTimeout()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdDelete` 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/gist/delete`/NewCmdDelete().`
- 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/gist/delete`/NewCmdDelete().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
NewCmdDelete
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `readyRun` and `GraphQLClient#Mutate` 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/ready`/readyRun().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Mutate().`
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/ready`/readyRun().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Mutate().
|
readyRun
|
GraphQLClient#Mutate
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/ready`/readyRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/PullRequestReady().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#Mutate().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Mutate()."
] |
cli/cli
|
In cli/cli, determine if `TestReposRun` and `NewNoResultsError` 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`/TestReposRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NewNoResultsError().`
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`/TestReposRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NewNoResultsError().
|
TestReposRun
|
NewNoResultsError
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/repos`/TestReposRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/repos`/reposRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NewNoResultsError()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdAlias` 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/alias`/NewCmdAlias().`
- 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/alias`/NewCmdAlias().
|
scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf().
|
NewCmdAlias
|
Docf
| true
| 1
|
[
"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/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf()."
] |
cli/cli
|
In cli/cli, determine if `printResults` and `IOStreams#CanPrompt` 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/copy`/printResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().`
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/copy`/printResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().
|
printResults
|
IOStreams#CanPrompt
| false
| null | null |
cli/cli
|
In cli/cli, determine if `isCommit` 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/browse`/isCommit().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/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/browse`/isCommit().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/main().
|
isCommit
|
main
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/main().",
"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/browse`/NewCmdBrowse().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/isCommit()."
] |
cli/cli
|
In cli/cli, determine if `Test_RepoClone_hasParent` and `Unwrap` 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/clone`/Test_RepoClone_hasParent().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Unwrap().`
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/clone`/Test_RepoClone_hasParent().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Unwrap().
|
Test_RepoClone_hasParent
|
Unwrap
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/clone`/Test_RepoClone_hasParent().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/clone`/runCloneCommand().",
"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#Editor().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Unwrap()."
] |
cli/cli
|
In cli/cli, determine if `RESTPrefix` and `Test_editRun` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/Test_editRun().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/Test_editRun().
|
RESTPrefix
|
Test_editRun
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/Test_editRun().",
"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/pkg/cmd/repo/edit`/getTopics().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix()."
] |
cli/cli
|
In cli/cli, determine if `sanitizeFileName` and `RemoveDiacritics` 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/upload`/sanitizeFileName().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RemoveDiacritics().`
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/upload`/sanitizeFileName().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RemoveDiacritics().
|
sanitizeFileName
|
RemoveDiacritics
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/upload`/sanitizeFileName().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/RemoveDiacritics().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RemoveDiacritics()."
] |
cli/cli
|
In cli/cli, determine if `TestFetchRefSHA` and `TrimPrefix` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/TrimPrefix().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().
|
scip-go gomod github.com/golang/go/src . strings/TrimPrefix().
|
TestFetchRefSHA
|
TrimPrefix
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/FetchRefSHA().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().",
"scip-go gomod github.com/golang/go/src . strings/TrimPrefix()."
] |
cli/cli
|
In cli/cli, determine if `TestNewCmdCreate` and `ColorScheme#Green` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestNewCmdCreate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Green().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestNewCmdCreate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Green().
|
TestNewCmdCreate
|
ColorScheme#Green
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/TestNewCmdCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/NewCmdCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/createRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Green()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `Test_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/alias/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_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/alias/list`/NewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_run().
|
NewCmdList
|
Test_run
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_run().",
"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/alias`/NewCmdAlias().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/alias/list`/NewCmdList()."
] |
cli/cli
|
In cli/cli, determine if `TestLicenseTemplateReturnsErrorWhenLicenseTemplateNotFound` 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/api`/TestLicenseTemplateReturnsErrorWhenLicenseTemplateNotFound().`
- 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/api`/TestLicenseTemplateReturnsErrorWhenLicenseTemplateNotFound().
|
scip-go gomod github.com/golang/go/src . strings/TrimSpace().
|
TestLicenseTemplateReturnsErrorWhenLicenseTemplateNotFound
|
TrimSpace
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/TestLicenseTemplateReturnsErrorWhenLicenseTemplateNotFound().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoLicense().",
"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().",
"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 `NewCmdCopy` 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/copy`/NewCmdCopy().`
- 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/copy`/NewCmdCopy().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/NewCmdCreateField().
|
NewCmdCopy
|
NewCmdCreateField
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mergeContext#merge` and `mergeContext#inMergeQueue` 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`/mergeContext#merge().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#inMergeQueue().`
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`/mergeContext#merge().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#inMergeQueue().
|
mergeContext#merge
|
mergeContext#inMergeQueue
| false
| null | null |
cli/cli
|
In cli/cli, determine if `configureStoreCredentialHelper` and `withIsolatedGitConfig` 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/shared/gitcredentials_test`/configureStoreCredentialHelper().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/withIsolatedGitConfig().`
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/shared/gitcredentials_test`/configureStoreCredentialHelper().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/withIsolatedGitConfig().
|
configureStoreCredentialHelper
|
withIsolatedGitConfig
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ParseQualifiedHeadRef` 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/pr/shared`/ParseQualifiedHeadRef().`
- 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/pr/shared`/ParseQualifiedHeadRef().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
ParseQualifiedHeadRef
|
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/pr`/NewCmdPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewCmdCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/createRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/NewCreateContext().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ParseQualifiedHeadRef()."
] |
cli/cli
|
In cli/cli, determine if `ExampleOption_UnwrapOrElse` and `Println` 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/option_test`/ExampleOption_UnwrapOrElse().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Println().`
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/option_test`/ExampleOption_UnwrapOrElse().
|
scip-go gomod github.com/golang/go/src . fmt/Println().
|
ExampleOption_UnwrapOrElse
|
Println
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option_test`/ExampleOption_UnwrapOrElse().",
"scip-go gomod github.com/golang/go/src . fmt/Println()."
] |
cli/cli
|
In cli/cli, determine if `TestGetAttestationsMaxRetries` 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/attestation/api`/TestGetAttestationsMaxRetries().`
- 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/attestation/api`/TestGetAttestationsMaxRetries().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
TestGetAttestationsMaxRetries
|
Sprintf
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/TestGetAttestationsMaxRetries().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/LiveClient#GetByDigest().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/LiveClient#getAttestations().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/LiveClient#buildRequestURL().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `RepoGitIgnoreTemplates` 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/api`/RepoGitIgnoreTemplates().`
- 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/api`/RepoGitIgnoreTemplates().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
|
RepoGitIgnoreTemplates
|
Header#Get
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoGitIgnoreTemplates().",
"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().",
"scip-go gomod github.com/golang/go/src . `net/http`/Header#Get()."
] |
cli/cli
|
In cli/cli, determine if `TestUpdateReplacesOldCredentials` and `Is` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/TestUpdateReplacesOldCredentials().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/Is().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/TestUpdateReplacesOldCredentials().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
TestUpdateReplacesOldCredentials
|
Is
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/TestUpdateReplacesOldCredentials().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/fillCredentials().",
"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 `Client#OwnerIDAndType` and `requiredScopesFromServerMessage` 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#OwnerIDAndType().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/requiredScopesFromServerMessage().`
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#OwnerIDAndType().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/requiredScopesFromServerMessage().
|
Client#OwnerIDAndType
|
requiredScopesFromServerMessage
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/handleError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/requiredScopesFromServerMessage()."
] |
cli/cli
|
In cli/cli, determine if `Prompter#Ask` and `getRepoSuggestions` 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`/Prompter#Ask().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/getRepoSuggestions().`
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`/Prompter#Ask().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/getRepoSuggestions().
|
Prompter#Ask
|
getRepoSuggestions
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunDelete` 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/run/delete`/TestRunDelete().`
- 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/run/delete`/TestRunDelete().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
TestRunDelete
|
Sprintf
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/delete`/TestRunDelete().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdWatch` and `ColorScheme#Muted` 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/watch`/NewCmdWatch().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Muted().`
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/watch`/NewCmdWatch().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Muted().
|
NewCmdWatch
|
ColorScheme#Muted
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/watch`/NewCmdWatch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/watch`/watchRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/watch`/renderRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/RenderJobsCompact().",
"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#Muted()."
] |
cli/cli
|
In cli/cli, determine if `renderToolCallTitle` and `relativeFilePath` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/renderToolCallTitle().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/relativeFilePath().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/renderToolCallTitle().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/relativeFilePath().
|
renderToolCallTitle
|
relativeFilePath
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdRepo` and `NewCmdSetDefault` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo`/NewCmdRepo().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/setdefault`/NewCmdSetDefault().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo`/NewCmdRepo().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/setdefault`/NewCmdSetDefault().
|
NewCmdRepo
|
NewCmdSetDefault
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo`/NewCmdRepo().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/setdefault`/NewCmdSetDefault()."
] |
cli/cli
|
In cli/cli, determine if `GenManTree` and `NewFlagSet` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/GenManTree().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/NewFlagSet().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/GenManTree().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/NewFlagSet().
|
GenManTree
|
NewFlagSet
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestJSONFields` and `FlagSet#BoolVarP` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestJSONFields().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestJSONFields().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP().
|
TestJSONFields
|
FlagSet#BoolVarP
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestJSONFields().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/NewCmdView().",
"scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP()."
] |
cli/cli
|
In cli/cli, determine if `newSelectCmd` and `newRebuildCmd` 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`/newSelectCmd().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newRebuildCmd().`
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`/newSelectCmd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newRebuildCmd().
|
newSelectCmd
|
newRebuildCmd
| false
| null | null |
cli/cli
|
In cli/cli, determine if `viewRun` 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/issue/view`/viewRun().`
- 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/issue/view`/viewRun().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().
|
viewRun
|
Equal
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunCreate_JSON` 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/project/create`/TestRunCreate_JSON().`
- 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/project/create`/TestRunCreate_JSON().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintf().
|
TestRunCreate_JSON
|
Fprintf
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/TestRunCreate_JSON().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/runCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/printResults().",
"scip-go gomod github.com/golang/go/src . fmt/Fprintf()."
] |
cli/cli
|
In cli/cli, determine if `syncRemoteRepo` and `syncLocalRepo` 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`/syncRemoteRepo().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncLocalRepo().`
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`/syncRemoteRepo().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/sync`/syncLocalRepo().
|
syncRemoteRepo
|
syncLocalRepo
| false
| null | null |
cli/cli
|
In cli/cli, determine if `StringSliceEnumFlag` 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/cmdutil`/StringSliceEnumFlag().`
- 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/cmdutil`/StringSliceEnumFlag().
|
scip-go gomod github.com/golang/go/src . strings/Join().
|
StringSliceEnumFlag
|
Join
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/StringSliceEnumFlag().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/formatValuesForUsageDocs().",
"scip-go gomod github.com/golang/go/src . strings/Join()."
] |
cli/cli
|
In cli/cli, determine if `isIncluded` and `parseTopics` 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`/isIncluded().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/parseTopics().`
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`/isIncluded().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/edit`/parseTopics().
|
isIncluded
|
parseTopics
| false
| null | null |
cli/cli
|
In cli/cli, determine if `searchQuery` and `Client#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/repo/list`/searchQuery().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#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/repo/list`/searchQuery().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#GraphQL().
|
searchQuery
|
Client#GraphQL
| false
| null | null |
cli/cli
|
In cli/cli, determine if `fillCredentials` and `Updater#Update` 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/shared/gitcredentials_test`/fillCredentials().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials`/Updater#Update().`
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/shared/gitcredentials_test`/fillCredentials().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials`/Updater#Update().
|
fillCredentials
|
Updater#Update
| false
| null | null |
cli/cli
|
In cli/cli, determine if `App#List` and `WithPadding` 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#List().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/tableprinter`/WithPadding().`
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#List().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/tableprinter`/WithPadding().
|
App#List
|
WithPadding
| true
| 2
|
[
"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/internal/tableprinter`/TablePrinter#AddTimeField().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/tableprinter`/WithPadding()."
] |
cli/cli
|
In cli/cli, determine if `Editable#Clone` 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`/Editable#Clone().`
- 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`/Editable#Clone().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().
|
Editable#Clone
|
NewCachedHTTPClient
| false
| null | null |
cli/cli
|
In cli/cli, determine if `sortLines` and `ReadFile` 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`/sortLines().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/ReadFile().`
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`/sortLines().
|
scip-go gomod github.com/golang/go/src . os/ReadFile().
|
sortLines
|
ReadFile
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ResolvedRemotes#HeadRepos` and `GitHubRepo` 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/context`/ResolvedRemotes#HeadRepos().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/GitHubRepo().`
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/context`/ResolvedRemotes#HeadRepos().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/GitHubRepo().
|
ResolvedRemotes#HeadRepos
|
GitHubRepo
| false
| null | null |
cli/cli
|
In cli/cli, determine if `reviewRun` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/reviewRun().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/reviewRun().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
reviewRun
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `New` and `Mock#On` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/New().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/mock`/Mock#On().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/New().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/mock`/Mock#On().
|
New
|
Mock#On
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestPinRun` and `NewWithHost` 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/pin`/TestPinRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/NewWithHost().`
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/pin`/TestPinRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/NewWithHost().
|
TestPinRun
|
NewWithHost
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/pin`/TestPinRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/NewWithHost()."
] |
cli/cli
|
In cli/cli, determine if `MultiAccount#Do` and `NoError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config/migration`/MultiAccount#Do().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config/migration`/MultiAccount#Do().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
|
MultiAccount#Do
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdCreate` and `cfg#ColorLabels` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/TestNewCmdCreate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#ColorLabels().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/TestNewCmdCreate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#ColorLabels().
|
TestNewCmdCreate
|
cfg#ColorLabels
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/TestNewCmdCreate().",
"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#ColorLabels()."
] |
cli/cli
|
In cli/cli, determine if `digestContainerImageArtifact` and `normalizeReference` 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`/digestContainerImageArtifact().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact`/normalizeReference().`
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`/digestContainerImageArtifact().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/artifact`/normalizeReference().
|
digestContainerImageArtifact
|
normalizeReference
| false
| null | null |
cli/cli
|
In cli/cli, determine if `codeRun` 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/search/code`/codeRun().`
- 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/search/code`/codeRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorf().
|
codeRun
|
FlagErrorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `DisplayURL` 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/internal/text`/DisplayURL().`
- 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/internal/text`/DisplayURL().
|
scip-go gomod github.com/golang/go/src . fmt/Errorf().
|
DisplayURL
|
Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#CheckoutNewBranch` 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`/Client#CheckoutNewBranch().`
- 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`/Client#CheckoutNewBranch().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
Client#CheckoutNewBranch
|
Is
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#CheckoutNewBranch().",
"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 `ReviewRequests#Logins` and `stringSet#AddValues` 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`/ReviewRequests#Logins().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#AddValues().`
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`/ReviewRequests#Logins().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#AddValues().
|
ReviewRequests#Logins
|
stringSet#AddValues
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewFromString` and `Test` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().
|
NewFromString
|
Test
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ParseAbsolute` and `stringSet#ToSlice` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/ParseAbsolute().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#ToSlice().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/ParseAbsolute().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#ToSlice().
|
ParseAbsolute
|
stringSet#ToSlice
| false
| null | null |
cli/cli
|
In cli/cli, determine if `formattedReviewerState` and `Caser#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/pr/view`/formattedReviewerState().`
- Symbol B: `scip-go gomod golang.org/x/text v0.32.0 `golang.org/x/text/cases`/Caser#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/pr/view`/formattedReviewerState().
|
scip-go gomod golang.org/x/text v0.32.0 `golang.org/x/text/cases`/Caser#String().
|
formattedReviewerState
|
Caser#String
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/formattedReviewerState().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/Title().",
"scip-go gomod golang.org/x/text v0.32.0 `golang.org/x/text/cases`/Caser#String()."
] |
cli/cli
|
In cli/cli, determine if `interactiveRepoNameAndOwner` and `ToUpper` 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`/interactiveRepoNameAndOwner().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/ToUpper().`
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`/interactiveRepoNameAndOwner().
|
scip-go gomod github.com/golang/go/src . strings/ToUpper().
|
interactiveRepoNameAndOwner
|
ToUpper
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runLink` and `Spinner#Stop` 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/link`/runLink().`
- Symbol B: `scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/Spinner#Stop().`
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/link`/runLink().
|
scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/Spinner#Stop().
|
runLink
|
Spinner#Stop
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/link`/runLink().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewProject().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator().",
"scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/Spinner#Stop()."
] |
cli/cli
|
In cli/cli, determine if `printResults` and `IOStreams#CanPrompt` 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/create`/printResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().`
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/create`/printResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().
|
printResults
|
IOStreams#CanPrompt
| false
| null | null |
cli/cli
|
In cli/cli, determine if `postEnvVariable` and `patchEnvVariable` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/postEnvVariable().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchEnvVariable().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/postEnvVariable().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchEnvVariable().
|
postEnvVariable
|
patchEnvVariable
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Map` and `None` 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/option`/Map().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/None().`
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/option`/Map().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/None().
|
Map
|
None
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Map().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/None()."
] |
cli/cli
|
In cli/cli, determine if `TestHelperProcess` and `Getenv` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestHelperProcess().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/Getenv().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestHelperProcess().
|
scip-go gomod github.com/golang/go/src . os/Getenv().
|
TestHelperProcess
|
Getenv
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestHelperProcess().",
"scip-go gomod github.com/golang/go/src . os/Getenv()."
] |
cli/cli
|
In cli/cli, determine if `ExtractName` and `WriteFile` 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/githubtemplate`/ExtractName().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/WriteFile().`
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/githubtemplate`/ExtractName().
|
scip-go gomod github.com/golang/go/src . os/WriteFile().
|
ExtractName
|
WriteFile
| false
| null | null |
cli/cli
|
In cli/cli, determine if `linkHandler` and `FlagSet#FlagUsages` 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/cmd/gen-docs`/linkHandler().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#FlagUsages().`
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/cmd/gen-docs`/linkHandler().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#FlagUsages().
|
linkHandler
|
FlagSet#FlagUsages
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestClientCheckoutNewBranch` and `createCommandContext` 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`/TestClientCheckoutNewBranch().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/createCommandContext().`
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`/TestClientCheckoutNewBranch().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/createCommandContext().
|
TestClientCheckoutNewBranch
|
createCommandContext
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientCheckoutNewBranch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/createCommandContext()."
] |
cli/cli
|
In cli/cli, determine if `TestProjectsV1Deprecation` and `Fprintln` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestProjectsV1Deprecation().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintln().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestProjectsV1Deprecation().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
TestProjectsV1Deprecation
|
Fprintln
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/TestProjectsV1Deprecation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/printHumanIssuePreview().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/formatComment().",
"scip-go gomod github.com/golang/go/src . fmt/Fprintln()."
] |
cli/cli
|
In cli/cli, determine if `ColorScheme#WarningIcon` 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/iostreams`/ColorScheme#WarningIcon().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Contains().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#WarningIcon().
|
scip-go gomod github.com/golang/go/src . strings/Contains().
|
ColorScheme#WarningIcon
|
Contains
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdClone` and `Test` 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/clone`/NewCmdClone().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().`
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/clone`/NewCmdClone().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().
|
NewCmdClone
|
Test
| false
| null | null |
cli/cli
|
In cli/cli, determine if `gitExecuter#Fetch` and `Is` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/gitExecuter#Fetch().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/Is().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/gitExecuter#Fetch().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
gitExecuter#Fetch
|
Is
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/gitExecuter#Fetch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Fetch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#AuthenticatedCommand().",
"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 `runCommand` and `cfg#Migrate` 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/delete`/runCommand().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Migrate().`
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/delete`/runCommand().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Migrate().
|
runCommand
|
cfg#Migrate
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/runCommand().",
"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#Migrate()."
] |
cli/cli
|
In cli/cli, determine if `printInspectionSummary` 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/attestation/inspect`/printInspectionSummary().`
- 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/attestation/inspect`/printInspectionSummary().
|
scip-go gomod github.com/golang/go/src . fmt/Errorf().
|
printInspectionSummary
|
Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdDownload` and `ParseAbsolute` 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`/NewCmdDownload().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/ParseAbsolute().`
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`/NewCmdDownload().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/ParseAbsolute().
|
NewCmdDownload
|
ParseAbsolute
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/download`/NewCmdDownload().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/download`/runDownload().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/safepaths`/ParseAbsolute()."
] |
cli/cli
|
In cli/cli, determine if `TestRenderJobs` and `ColorScheme#Gray` 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`/TestRenderJobs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Gray().`
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`/TestRenderJobs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Gray().
|
TestRenderJobs
|
ColorScheme#Gray
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/TestRenderJobs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/RenderJobs().",
"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#Muted().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Gray()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdRun` and `ColorScheme#Yellow` 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`/NewCmdRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().`
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`/NewCmdRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().
|
NewCmdRun
|
ColorScheme#Yellow
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run`/NewCmdRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#WarningIcon().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow()."
] |
cli/cli
|
In cli/cli, determine if `TestRunView_Org` 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/cmd/project/view`/TestRunView_Org().`
- 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/cmd/project/view`/TestRunView_Org().
|
scip-go gomod github.com/golang/go/src . io/NopCloser().
|
TestRunView_Org
|
NopCloser
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/TestRunView_Org().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/NewTestClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().",
"scip-go gomod github.com/golang/go/src . io/NopCloser()."
] |
cli/cli
|
In cli/cli, determine if `populateResolvedRemotes` 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/git`/populateResolvedRemotes().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gh`/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/git`/populateResolvedRemotes().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gh`/main().
|
populateResolvedRemotes
|
main
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gh`/main().",
"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/factory`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/remotesFunc().",
"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`/populateResolvedRemotes()."
] |
cli/cli
|
In cli/cli, determine if `getMachineName` and `App#handleAdditionalPermissions` 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`/getMachineName().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#handleAdditionalPermissions().`
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`/getMachineName().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#handleAdditionalPermissions().
|
getMachineName
|
App#handleAdditionalPermissions
| false
| null | null |
cli/cli
|
In cli/cli, determine if `marshalJSON` and `Repeat` 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/jsoncolor`/marshalJSON().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Repeat().`
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/jsoncolor`/marshalJSON().
|
scip-go gomod github.com/golang/go/src . strings/Repeat().
|
marshalJSON
|
Repeat
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdCreate` and `Command#SetIn` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/NewCmdCreate().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/NewCmdCreate().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().
|
NewCmdCreate
|
Command#SetIn
| false
| null | null |
cli/cli
|
In cli/cli, determine if `stubPR` and `DefaultHost` 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`/stubPR().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/DefaultHost().`
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`/stubPR().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/DefaultHost().
|
stubPR
|
DefaultHost
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/stubPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/_stubPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/FromFullName().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/defaultHost().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/auth`/DefaultHost()."
] |
cli/cli
|
In cli/cli, determine if `setupGitRun` and `login` 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/setupgit`/setupGitRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/setupgit`/login().`
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/setupgit`/setupGitRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/setupgit`/login().
|
setupGitRun
|
login
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestMergeRun_disableAutoMerge` and `confirmSubmission` 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`/TestMergeRun_disableAutoMerge().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/confirmSubmission().`
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`/TestMergeRun_disableAutoMerge().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/confirmSubmission().
|
TestMergeRun_disableAutoMerge
|
confirmSubmission
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/TestMergeRun_disableAutoMerge().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#merge().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/confirmSubmission()."
] |
cli/cli
|
In cli/cli, determine if `disablePromptConfig` and `IOStreams#GetNeverPrompt` 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`/disablePromptConfig().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#GetNeverPrompt().`
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`/disablePromptConfig().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#GetNeverPrompt().
|
disablePromptConfig
|
IOStreams#GetNeverPrompt
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunCreate_Me` and `Client#OwnerIDAndType` 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/create`/TestRunCreate_Me().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().`
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/create`/TestRunCreate_Me().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().
|
TestRunCreate_Me
|
Client#OwnerIDAndType
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/TestRunCreate_Me().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/create`/runCreate().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType()."
] |
cli/cli
|
In cli/cli, determine if `viewRun` and `RelativeTimeAgo` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/viewRun().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RelativeTimeAgo().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/viewRun().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RelativeTimeAgo().
|
viewRun
|
RelativeTimeAgo
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/printHumanIssuePreview().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/FuzzyAgo().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/RelativeTimeAgo()."
] |
cli/cli
|
In cli/cli, determine if `printRawIssuePreview` and `preloadIssueComments` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/printRawIssuePreview().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/preloadIssueComments().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/printRawIssuePreview().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/view`/preloadIssueComments().
|
printRawIssuePreview
|
preloadIssueComments
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestIssueList_pagination` and `shortenQuery` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_pagination().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/shortenQuery().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_pagination().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/shortenQuery().
|
TestIssueList_pagination
|
shortenQuery
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_pagination().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/listIssues().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/IssueGraphQL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/StatusCheckRollupGraphQLWithoutCountByState().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/shortenQuery()."
] |
cli/cli
|
In cli/cli, determine if `updateBranchRun` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/update-branch`/updateBranchRun().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/update-branch`/updateBranchRun().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
updateBranchRun
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runCancel` and `Registry#Register` 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/cancel`/runCancel().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Register().`
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/cancel`/runCancel().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Register().
|
runCancel
|
Registry#Register
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ProjectItem#DetailedItem` and `FieldValueNodes#ID` 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`/ProjectItem#DetailedItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/FieldValueNodes#ID().`
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`/ProjectItem#DetailedItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/FieldValueNodes#ID().
|
ProjectItem#DetailedItem
|
FieldValueNodes#ID
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ValidAliasNameFunc` and `Test_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/alias/shared`/ValidAliasNameFunc().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_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/alias/shared`/ValidAliasNameFunc().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_run().
|
ValidAliasNameFunc
|
Test_run
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/Test_run().",
"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/alias/shared`/ValidAliasNameFunc()."
] |
cli/cli
|
In cli/cli, determine if `printLogs` and `FuzzyAgo` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/printLogs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/FuzzyAgo().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/printLogs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/FuzzyAgo().
|
printLogs
|
FuzzyAgo
| false
| null | null |
cli/cli
|
In cli/cli, determine if `issueStateTitleWithColor` 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/issue/view`/issueStateTitleWithColor().`
- 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/issue/view`/issueStateTitleWithColor().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
issueStateTitleWithColor
|
IOStreams#ColorScheme
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewTrustedRootCmd` and `IOStreams#ColorEnabled` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/trustedroot`/NewTrustedRootCmd().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/trustedroot`/NewTrustedRootCmd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().
|
NewTrustedRootCmd
|
IOStreams#ColorEnabled
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/trustedroot`/NewTrustedRootCmd().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/io`/NewHandler().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#DetectTerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled()."
] |
cli/cli
|
In cli/cli, determine if `chooseCodespaceFromList` and `AddUint32` 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/golang/go/src . `sync/atomic`/AddUint32().`
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/golang/go/src . `sync/atomic`/AddUint32().
|
chooseCodespaceFromList
|
AddUint32
| false
| null | null |
cli/cli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.