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 `isCommit` and `RegisterBranchCompletionFlags` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/pkg/cmdutil`/RegisterBranchCompletionFlags().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/pkg/cmdutil`/RegisterBranchCompletionFlags().
isCommit
RegisterBranchCompletionFlags
false
null
null
cli/cli
In cli/cli, determine if `configureTestCredentialHelper` and `HelperConfig#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/auth/shared/gitcredentials_test`/configureTestCredentialHelper().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/contract`/HelperConfig#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/auth/shared/gitcredentials_test`/configureTestCredentialHelper().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/contract`/HelperConfig#Test().
configureTestCredentialHelper
HelperConfig#Test
false
null
null
cli/cli
In cli/cli, determine if `printAliases` and `printOptions` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/printAliases().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/printOptions().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/printAliases().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/printOptions().
printAliases
printOptions
false
null
null
cli/cli
In cli/cli, determine if `Title` and `prReviewerList` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/Title().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/prReviewerList().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/Title().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/prReviewerList().
Title
prReviewerList
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/prReviewerList().", "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()." ]
cli/cli
In cli/cli, determine if `findByNumber` and `Group#Wait` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/findByNumber().` - Symbol B: `scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Wait().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/findByNumber().
scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Wait().
findByNumber
Group#Wait
false
null
null
cli/cli
In cli/cli, determine if `OverrideBaseRepoFunc` and `Command#RegisterFlagCompletionFunc` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/OverrideBaseRepoFunc().` - Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#RegisterFlagCompletionFunc().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/OverrideBaseRepoFunc().
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#RegisterFlagCompletionFunc().
OverrideBaseRepoFunc
Command#RegisterFlagCompletionFunc
false
null
null
cli/cli
In cli/cli, determine if `cfg#Migrate` and `TestPRStatus_currentBranch_Closed` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Migrate().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/status`/TestPRStatus_currentBranch_Closed().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Migrate().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/status`/TestPRStatus_currentBranch_Closed().
cfg#Migrate
TestPRStatus_currentBranch_Closed
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/status`/TestPRStatus_currentBranch_Closed().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/status`/runCommand().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/status`/runCommandWithDetector().", "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 `ExtractContents` and `common#TempDir` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/ExtractContents().` - Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#TempDir().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/ExtractContents().
scip-go gomod github.com/golang/go/src . testing/common#TempDir().
ExtractContents
common#TempDir
false
null
null
cli/cli
In cli/cli, determine if `TestTemplateManagerSelect` and `templateManager#fetch` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestTemplateManagerSelect().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestTemplateManagerSelect().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().
TestTemplateManagerSelect
templateManager#fetch
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/TestTemplateManagerSelect().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#Select().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#memoizedFetch().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch()." ]
cli/cli
In cli/cli, determine if `apiDelete` and `Sprintf` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/apiDelete().` - Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/apiDelete().
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
apiDelete
Sprintf
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/delete`/apiDelete().", "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/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 . fmt/Sprintf()." ]
cli/cli
In cli/cli, determine if `NewCmdEdit` and `NewCmdLink` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/NewCmdEdit().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/link`/NewCmdLink().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/NewCmdEdit().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/link`/NewCmdLink().
NewCmdEdit
NewCmdLink
false
null
null
cli/cli
In cli/cli, determine if `NewCmdEdit` and `Header#Get` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().` - Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
NewCmdEdit
Header#Get
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/editRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/shared`/GetRawGistFile().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().", "scip-go gomod github.com/golang/go/src . `net/http`/Header#Get()." ]
cli/cli
In cli/cli, determine if `TestNewConfigProvidesFallback` and `requireKeyWithValue` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestNewConfigProvidesFallback().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/requireKeyWithValue().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestNewConfigProvidesFallback().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/requireKeyWithValue().
TestNewConfigProvidesFallback
requireKeyWithValue
true
1
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestNewConfigProvidesFallback().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/requireKeyWithValue()." ]
cli/cli
In cli/cli, determine if `tokenRun` 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/auth/token`/tokenRun().` - 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/auth/token`/tokenRun().
scip-go gomod github.com/golang/go/src . testing/T#Run().
tokenRun
T#Run
false
null
null
cli/cli
In cli/cli, determine if `ValidAliasNameFunc` 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/alias/shared`/ValidAliasNameFunc().` - 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/alias/shared`/ValidAliasNameFunc().
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP().
ValidAliasNameFunc
FlagSet#BoolVarP
false
null
null
cli/cli
In cli/cli, determine if `NewCmdWatch` and `Doc` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/watch`/NewCmdWatch().` - Symbol B: `scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/watch`/NewCmdWatch().
scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc().
NewCmdWatch
Doc
true
1
[ "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/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Doc()." ]
cli/cli
In cli/cli, determine if `TestQualifiedHeadRef` and `Split` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestQualifiedHeadRef().` - Symbol B: `scip-go gomod github.com/golang/go/src . strings/Split().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestQualifiedHeadRef().
scip-go gomod github.com/golang/go/src . strings/Split().
TestQualifiedHeadRef
Split
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/TestQualifiedHeadRef().", "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/golang/go/src . strings/Split()." ]
cli/cli
In cli/cli, determine if `TestIssueReopen_withComment` and `Unmarshal` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/reopen`/TestIssueReopen_withComment().` - Symbol B: `scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/reopen`/TestIssueReopen_withComment().
scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal().
TestIssueReopen_withComment
Unmarshal
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/reopen`/TestIssueReopen_withComment().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQLMutation().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/decodeJSONBody().", "scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal()." ]
cli/cli
In cli/cli, determine if `runCancel` and `getWorkflowByID` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/cmd/workflow/shared`/getWorkflowByID().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/cmd/workflow/shared`/getWorkflowByID().
runCancel
getWorkflowByID
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/cancel`/runCancel().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRunsWithFilter().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRuns().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/preloadWorkflowNames().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/GetWorkflow().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/getWorkflowByID()." ]
cli/cli
In cli/cli, determine if `generateChangelog` and `remoteTagExists` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/generateChangelog().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/remoteTagExists().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/generateChangelog().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/create`/remoteTagExists().
generateChangelog
remoteTagExists
false
null
null
cli/cli
In cli/cli, determine if `TestNewCmdCode` and `FlagSet#StringVar` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestNewCmdCode().` - Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestNewCmdCode().
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar().
TestNewCmdCode
FlagSet#StringVar
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/TestNewCmdCode().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/search/code`/NewCmdCode().", "scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar()." ]
cli/cli
In cli/cli, determine if `GitCredentialFlow#Prompt` 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/auth/shared`/GitCredentialFlow#Prompt().` - 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/auth/shared`/GitCredentialFlow#Prompt().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
GitCredentialFlow#Prompt
NewCmdRoot
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth`/NewCmdAuth().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/NewCmdRefresh().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/refresh`/refreshRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared`/GitCredentialFlow#Prompt()." ]
cli/cli
In cli/cli, determine if `Test_Remotes_FindByRepo` and `normalizeHostname` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/context`/Test_Remotes_FindByRepo().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/normalizeHostname().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/context`/Test_Remotes_FindByRepo().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/normalizeHostname().
Test_Remotes_FindByRepo
normalizeHostname
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/context`/Test_Remotes_FindByRepo().", "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().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/normalizeHostname()." ]
cli/cli
In cli/cli, determine if `oneRemoteStubFn` and `ToLower` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared_test`/oneRemoteStubFn().` - Symbol B: `scip-go gomod github.com/golang/go/src . strings/ToLower().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared_test`/oneRemoteStubFn().
scip-go gomod github.com/golang/go/src . strings/ToLower().
oneRemoteStubFn
ToLower
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared_test`/oneRemoteStubFn().", "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().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghrepo`/normalizeHostname().", "scip-go gomod github.com/golang/go/src . strings/ToLower()." ]
cli/cli
In cli/cli, determine if `extList#FindSelected` 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/extension/browse`/extList#FindSelected().` - 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/pkg/cmd/extension/browse`/extList#FindSelected().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gh`/main().
extList#FindSelected
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/root`/NewCmdRoot().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/NewCmdExtension().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/ExtBrowse().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#FindSelected()." ]
cli/cli
In cli/cli, determine if `Stub` 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/internal/run`/Stub().` - 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/internal/run`/Stub().
scip-go gomod github.com/golang/go/src . strings/Join().
Stub
Join
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/Stub().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().", "scip-go gomod github.com/golang/go/src . strings/Join()." ]
cli/cli
In cli/cli, determine if `safeClose` and `Group#Go` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/safeClose().` - Symbol B: `scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Go().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/safeClose().
scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Go().
safeClose
Group#Go
false
null
null
cli/cli
In cli/cli, determine if `TestClientDeleteLocalBranch` and `CommandContext` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestClientDeleteLocalBranch().` - Symbol B: `scip-go gomod github.com/golang/go/src . `os/exec`/CommandContext().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestClientDeleteLocalBranch().
scip-go gomod github.com/golang/go/src . `os/exec`/CommandContext().
TestClientDeleteLocalBranch
CommandContext
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/TestClientDeleteLocalBranch().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#DeleteLocalBranch().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Command().", "scip-go gomod github.com/golang/go/src . `os/exec`/CommandContext()." ]
cli/cli
In cli/cli, determine if `mapRepoNamesToIDs` and `GetSecretEntity` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared`/GetSecretEntity().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared`/GetSecretEntity().
mapRepoNamesToIDs
GetSecretEntity
false
null
null
cli/cli
In cli/cli, determine if `Test_addQuery` and `Values#Add` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_addQuery().` - Symbol B: `scip-go gomod github.com/golang/go/src . `net/url`/Values#Add().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_addQuery().
scip-go gomod github.com/golang/go/src . `net/url`/Values#Add().
Test_addQuery
Values#Add
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_addQuery().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/addQuery().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/addQueryParam().", "scip-go gomod github.com/golang/go/src . `net/url`/Values#Add()." ]
cli/cli
In cli/cli, determine if `handleHTTPError` and `searcher#Code` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/handleHTTPError().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Code().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/handleHTTPError().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Code().
handleHTTPError
searcher#Code
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Code().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#search().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/handleHTTPError()." ]
cli/cli
In cli/cli, determine if `Editable#MilestoneId` 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/pkg/cmd/pr/shared`/Editable#MilestoneId().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/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/pkg/cmd/pr/shared`/Editable#MilestoneId().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/Test_editRun().
Editable#MilestoneId
Test_editRun
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/Test_editRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/editRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/updatePullRequest().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/UpdateIssue().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/replaceIssueFields().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/Editable#MilestoneId()." ]
cli/cli
In cli/cli, determine if `editRun` and `ExactArgs` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/edit`/editRun().` - Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/ExactArgs().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/edit`/editRun().
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/ExactArgs().
editRun
ExactArgs
false
null
null
cli/cli
In cli/cli, determine if `NewCmdDelete` and `EnableRepoOverride` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/delete`/NewCmdDelete().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/delete`/NewCmdDelete().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().
NewCmdDelete
EnableRepoOverride
false
null
null
cli/cli
In cli/cli, determine if `TestRunCopy_Me` and `File#Fd` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestRunCopy_Me().` - Symbol B: `scip-go gomod github.com/golang/go/src . os/File#Fd().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestRunCopy_Me().
scip-go gomod github.com/golang/go/src . os/File#Fd().
TestRunCopy_Me
File#Fd
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/copy`/TestRunCopy_Me().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/copy`/runCopy().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdinTTY().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/isTerminal().", "scip-go gomod github.com/golang/go/src . os/File#Fd()." ]
cli/cli
In cli/cli, determine if `listRun` and `NewJSONExporter` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/list`/listRun().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NewJSONExporter().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/list`/listRun().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/NewJSONExporter().
listRun
NewJSONExporter
false
null
null
cli/cli
In cli/cli, determine if `newRebuildCmd` and `newCreateCmd` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/newRebuildCmd().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newCreateCmd().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/newRebuildCmd().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newCreateCmd().
newRebuildCmd
newCreateCmd
false
null
null
cli/cli
In cli/cli, determine if `EndpointNeedsScopes` and `NewEncoder` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/EndpointNeedsScopes().` - Symbol B: `scip-go gomod github.com/golang/go/src . `encoding/json`/NewEncoder().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/EndpointNeedsScopes().
scip-go gomod github.com/golang/go/src . `encoding/json`/NewEncoder().
EndpointNeedsScopes
NewEncoder
false
null
null
cli/cli
In cli/cli, determine if `IsSessionID` and `NewFinder` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/IsSessionID().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewFinder().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/shared`/IsSessionID().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewFinder().
IsSessionID
NewFinder
false
null
null
cli/cli
In cli/cli, determine if `listLabels` and `createLabel` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/listLabels().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/createLabel().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/listLabels().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/createLabel().
listLabels
createLabel
false
null
null
cli/cli
In cli/cli, determine if `Client#ProjectFields` and `Trim` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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#ProjectFields().` - Symbol B: `scip-go gomod github.com/golang/go/src . strings/Trim().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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#ProjectFields().
scip-go gomod github.com/golang/go/src . strings/Trim().
Client#ProjectFields
Trim
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#ProjectFields().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/paginateAttributes().", "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().", "scip-go gomod github.com/golang/go/src . strings/Trim()." ]
cli/cli
In cli/cli, determine if `TestStartSSHServerFailure` and `WithCancel` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestStartSSHServerFailure().` - Symbol B: `scip-go gomod github.com/golang/go/src . context/WithCancel().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestStartSSHServerFailure().
scip-go gomod github.com/golang/go/src . context/WithCancel().
TestStartSSHServerFailure
WithCancel
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/TestStartSSHServerFailure().", "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/WithCancel()." ]
cli/cli
In cli/cli, determine if `printSession` and `IOStreams#StartProgressIndicatorWithLabel` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/printSession().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/view`/printSession().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().
printSession
IOStreams#StartProgressIndicatorWithLabel
false
null
null
cli/cli
In cli/cli, determine if `clearCacheRun` and `CacheDir` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/clear-cache`/clearCacheRun().` - Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/CacheDir().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/clear-cache`/clearCacheRun().
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/CacheDir().
clearCacheRun
CacheDir
false
null
null
cli/cli
In cli/cli, determine if `serializeProjectWithItems` and `NewCmdRoot` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/serializeProjectWithItems().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/serializeProjectWithItems().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
serializeProjectWithItems
NewCmdRoot
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project`/NewCmdProject().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/NewCmdList().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/runList().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Project#DetailedItems().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/serializeProjectWithItems()." ]
cli/cli
In cli/cli, determine if `RenderJobsCompact` and `NewCmdRoot` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/RenderJobsCompact().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/RenderJobsCompact().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
RenderJobsCompact
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/run`/NewCmdRun().", "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()." ]
cli/cli
In cli/cli, determine if `renderPullRequestPlain` 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/create`/renderPullRequestPlain().` - 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/create`/renderPullRequestPlain().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
renderPullRequestPlain
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`/submitPR().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/renderPullRequestPlain()." ]
cli/cli
In cli/cli, determine if `CommentablePreRun` and `CommentableInteractiveCreateIfNoneSurvey` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/CommentablePreRun().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveCreateIfNoneSurvey().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/CommentablePreRun().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableInteractiveCreateIfNoneSurvey().
CommentablePreRun
CommentableInteractiveCreateIfNoneSurvey
false
null
null
cli/cli
In cli/cli, determine if `TestJsonArrayWriter` and `WriteDelims` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/TestJsonArrayWriter().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/jsoncolor`/WriteDelims().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/TestJsonArrayWriter().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/jsoncolor`/WriteDelims().
TestJsonArrayWriter
WriteDelims
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/TestJsonArrayWriter().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/startPage().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/jsoncolor`/WriteDelims()." ]
cli/cli
In cli/cli, determine if `TestNew_APIURL_customConfig` and `isGarage` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/TestNew_APIURL_customConfig().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/isGarage().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/TestNew_APIURL_customConfig().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/isGarage().
TestNew_APIURL_customConfig
isGarage
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/TestNew_APIURL_customConfig().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/New().", "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/internal/ghinstance`/isGarage()." ]
cli/cli
In cli/cli, determine if `Test_getRun` and `Config#Keys` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/get`/Test_getRun().` - Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/Config#Keys().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/get`/Test_getRun().
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/Config#Keys().
Test_getRun
Config#Keys
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/get`/Test_getRun().", "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/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/Config#Keys()." ]
cli/cli
In cli/cli, determine if `NewCmdMerge` and `IOStreams#SetStdinTTY` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/NewCmdMerge().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/NewCmdMerge().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().
NewCmdMerge
IOStreams#SetStdinTTY
false
null
null
cli/cli
In cli/cli, determine if `CodespaceConnection#Close` and `DeepEqual` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/CodespaceConnection#Close().` - Symbol B: `scip-go gomod github.com/golang/go/src . reflect/DeepEqual().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/CodespaceConnection#Close().
scip-go gomod github.com/golang/go/src . reflect/DeepEqual().
CodespaceConnection#Close
DeepEqual
false
null
null
cli/cli
In cli/cli, determine if `UpdateProjectV2Items` and `HasPrefix` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/UpdateProjectV2Items().` - Symbol B: `scip-go gomod github.com/golang/go/src . strings/HasPrefix().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/UpdateProjectV2Items().
scip-go gomod github.com/golang/go/src . strings/HasPrefix().
UpdateProjectV2Items
HasPrefix
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/UpdateProjectV2Items().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#GraphQL().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().", "scip-go gomod github.com/golang/go/src . strings/HasPrefix()." ]
cli/cli
In cli/cli, determine if `Client#AddRemote` and `HasPrefix` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#AddRemote().` - Symbol B: `scip-go gomod github.com/golang/go/src . strings/HasPrefix().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#AddRemote().
scip-go gomod github.com/golang/go/src . strings/HasPrefix().
Client#AddRemote
HasPrefix
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#AddRemote().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/ParseURL().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/isPossibleProtocol().", "scip-go gomod github.com/golang/go/src . strings/HasPrefix()." ]
cli/cli
In cli/cli, determine if `templateManager#fetch` and `Sprintf` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().` - Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
templateManager#fetch
Sprintf
true
5
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/templateManager#fetch().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#ToplevelDir().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#revParse().", "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 . fmt/Sprintf()." ]
cli/cli
In cli/cli, determine if `listRun` and `NoError` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/list`/listRun().` - Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/list`/listRun().
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().
listRun
NoError
false
null
null
cli/cli
In cli/cli, determine if `editRun` and `Mutex#Unlock` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().` - Symbol B: `scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().
scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock().
editRun
Mutex#Unlock
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().", "scip-go gomod github.com/golang/go/src . sync/Mutex#Unlock()." ]
cli/cli
In cli/cli, determine if `LastCommit` and `GraphQLClient#Query` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/LastCommit().` - Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Query().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/LastCommit().
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Query().
LastCommit
GraphQLClient#Query
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/LastCommit().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#Query().", "scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/GraphQLClient#Query()." ]
cli/cli
In cli/cli, determine if `listRun` and `StringResponse` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/list`/listRun().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/list`/listRun().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().
listRun
StringResponse
false
null
null
cli/cli
In cli/cli, determine if `replaceAll` and `Marshal` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/replaceAll().` - Symbol B: `scip-go gomod github.com/golang/go/src . `encoding/json`/Marshal().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/replaceAll().
scip-go gomod github.com/golang/go/src . `encoding/json`/Marshal().
replaceAll
Marshal
true
1
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/replaceAll().", "scip-go gomod github.com/golang/go/src . `encoding/json`/Marshal()." ]
cli/cli
In cli/cli, determine if `createFromLocal` and `interactiveRepoNameAndOwner` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/createFromLocal().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/interactiveRepoNameAndOwner().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/createFromLocal().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/interactiveRepoNameAndOwner().
createFromLocal
interactiveRepoNameAndOwner
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/createFromLocal().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/interactiveRepoInfo().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/interactiveRepoNameAndOwner()." ]
cli/cli
In cli/cli, determine if `App#StopProgressIndicator` 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/codespace`/App#StopProgressIndicator().` - 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/codespace`/App#StopProgressIndicator().
scip-go gomod github.com/golang/go/src . fmt/Errorf().
App#StopProgressIndicator
Errorf
false
null
null
cli/cli
In cli/cli, determine if `getAttestationDetail` and `NoError` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/inspect`/getAttestationDetail().` - Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/inspect`/getAttestationDetail().
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
getAttestationDetail
NoError
false
null
null
cli/cli
In cli/cli, determine if `CommentDelete` and `URL#Hostname` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/CommentDelete().` - Symbol B: `scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/CommentDelete().
scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().
CommentDelete
URL#Hostname
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/CommentDelete().", "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/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().", "scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname()." ]
cli/cli
In cli/cli, determine if `API#setHeaders` and `runRepoSearchTest` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/API#setHeaders().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/runRepoSearchTest().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/API#setHeaders().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/runRepoSearchTest().
API#setHeaders
runRepoSearchTest
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/runRepoSearchTest().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/API#GetCodespaceRepoSuggestions().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/api`/API#setHeaders()." ]
cli/cli
In cli/cli, determine if `parseFields` and `IOStreams#ReadUserFile` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/parseFields().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ReadUserFile().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/parseFields().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ReadUserFile().
parseFields
IOStreams#ReadUserFile
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/parseFields().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/magicFieldValue().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ReadUserFile()." ]
cli/cli
In cli/cli, determine if `SSOURL` and `Test_processResponse_template` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/SSOURL().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_processResponse_template().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/SSOURL().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_processResponse_template().
SSOURL
Test_processResponse_template
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_processResponse_template().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/processResponse().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/SSOURL()." ]
cli/cli
In cli/cli, determine if `RepoLicense` and `NewClientFromHTTP` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoLicense().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoLicense().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
RepoLicense
NewClientFromHTTP
true
1
[ "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`/NewClientFromHTTP()." ]
cli/cli
In cli/cli, determine if `NewCmdCreate` and `NewCmdView` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/NewCmdCreate().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/NewCmdView().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/NewCmdCreate().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/NewCmdView().
NewCmdCreate
NewCmdView
false
null
null
cli/cli
In cli/cli, determine if `New` and `AuthConfig#SetActiveToken` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/New().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#SetActiveToken().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/New().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/AuthConfig#SetActiveToken().
New
AuthConfig#SetActiveToken
false
null
null
cli/cli
In cli/cli, determine if `ConfigMock#Editor` and `RWMutex#Lock` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/gh/mock`/ConfigMock#Editor().` - Symbol B: `scip-go gomod github.com/golang/go/src . sync/RWMutex#Lock().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/gh/mock`/ConfigMock#Editor().
scip-go gomod github.com/golang/go/src . sync/RWMutex#Lock().
ConfigMock#Editor
RWMutex#Lock
true
1
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/gh/mock`/ConfigMock#Editor().", "scip-go gomod github.com/golang/go/src . sync/RWMutex#Lock()." ]
cli/cli
In cli/cli, determine if `TestCheckForExtensionUpdate` 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/internal/update`/TestCheckForExtensionUpdate().` - 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/internal/update`/TestCheckForExtensionUpdate().
scip-go gomod github.com/golang/go/src . os/WriteFile().
TestCheckForExtensionUpdate
WriteFile
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/update`/TestCheckForExtensionUpdate().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/update`/CheckForExtensionUpdate().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/update`/setStateEntry().", "scip-go gomod github.com/golang/go/src . os/WriteFile()." ]
cli/cli
In cli/cli, determine if `EditableAssignees#clone` and `TestNewCmdEdit` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/EditableAssignees#clone().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/TestNewCmdEdit().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/EditableAssignees#clone().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/TestNewCmdEdit().
EditableAssignees#clone
TestNewCmdEdit
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/TestNewCmdEdit().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/NewCmdEdit().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/editRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/Editable#Clone().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/EditableAssignees#clone()." ]
cli/cli
In cli/cli, determine if `TestPlainHttpClient` and `NewHTTPClient` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestPlainHttpClient().` - Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewHTTPClient().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestPlainHttpClient().
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewHTTPClient().
TestPlainHttpClient
NewHTTPClient
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/TestPlainHttpClient().", "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`/httpClientFunc().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewHTTPClient().", "scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewHTTPClient()." ]
cli/cli
In cli/cli, determine if `configureTestCredentialHelper` 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`/configureTestCredentialHelper().` - 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`/configureTestCredentialHelper().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/withIsolatedGitConfig().
configureTestCredentialHelper
withIsolatedGitConfig
false
null
null
cli/cli
In cli/cli, determine if `ColorScheme#Yellowf` 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/iostreams`/ColorScheme#Yellowf().` - 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/iostreams`/ColorScheme#Yellowf().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().
ColorScheme#Yellowf
ColorScheme#Yellow
true
1
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellowf().", "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 `handleAutolinkCreateError` and `NewReader` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/handleAutolinkCreateError().` - Symbol B: `scip-go gomod github.com/golang/go/src . bytes/NewReader().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/handleAutolinkCreateError().
scip-go gomod github.com/golang/go/src . bytes/NewReader().
handleAutolinkCreateError
NewReader
false
null
null
cli/cli
In cli/cli, determine if `getExpansion` and `Buffer#WriteString` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/set`/getExpansion().` - Symbol B: `scip-go gomod github.com/golang/go/src . bytes/Buffer#WriteString().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/set`/getExpansion().
scip-go gomod github.com/golang/go/src . bytes/Buffer#WriteString().
getExpansion
Buffer#WriteString
false
null
null
cli/cli
In cli/cli, determine if `SessionSymbol` and `Background` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/SessionSymbol().` - Symbol B: `scip-go gomod github.com/golang/go/src . context/Background().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/SessionSymbol().
scip-go gomod github.com/golang/go/src . context/Background().
SessionSymbol
Background
false
null
null
cli/cli
In cli/cli, determine if `updateBranchRun` and `NewGraphQLClient` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/update-branch`/updateBranchRun().` - Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/update-branch`/updateBranchRun().
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().
updateBranchRun
NewGraphQLClient
true
4
[ "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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/update-branch`/updatePullRequestBranch().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/UpdatePullRequestBranch().", "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`/NewGraphQLClient()." ]
cli/cli
In cli/cli, determine if `TestJSONFields` and `Command#SetFlagErrorFunc` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/TestJSONFields().` - Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetFlagErrorFunc().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/TestJSONFields().
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetFlagErrorFunc().
TestJSONFields
Command#SetFlagErrorFunc
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/TestJSONFields().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/view`/NewCmdView().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/AddJSONFlags().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/setupJsonFlags().", "scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetFlagErrorFunc()." ]
cli/cli
In cli/cli, determine if `promptForJob` and `getZipLogMap` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/promptForJob().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/getZipLogMap().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/promptForJob().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/getZipLogMap().
promptForJob
getZipLogMap
false
null
null
cli/cli
In cli/cli, determine if `portInfo#BrowseURL` and `IsInternalPort` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/portInfo#BrowseURL().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/IsInternalPort().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/portInfo#BrowseURL().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/portforwarder`/IsInternalPort().
portInfo#BrowseURL
IsInternalPort
false
null
null
cli/cli
In cli/cli, determine if `reopenRun` and `FlagSet#StringVarP` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/reopen`/reopenRun().` - Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVarP().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/reopen`/reopenRun().
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVarP().
reopenRun
FlagSet#StringVarP
false
null
null
cli/cli
In cli/cli, determine if `fetchDiff` and `Sprintf` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/diff`/fetchDiff().` - Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/diff`/fetchDiff().
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
fetchDiff
Sprintf
true
2
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/diff`/fetchDiff().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/ghinstance`/RESTPrefix().", "scip-go gomod github.com/golang/go/src . fmt/Sprintf()." ]
cli/cli
In cli/cli, determine if `TestRunArchive_JSON` and `New` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_JSON().` - Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_JSON().
scip-go gomod github.com/golang/go/src . errors/New().
TestRunArchive_JSON
New
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_JSON().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/runArchiveItem().", "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/golang/go/src . errors/New()." ]
cli/cli
In cli/cli, determine if `TestListRun` and `cfg#GetOrDefault` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/gitignore/list`/TestListRun().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/gitignore/list`/TestListRun().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().
TestListRun
cfg#GetOrDefault
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/gitignore/list`/TestListRun().", "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#Browser().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault()." ]
cli/cli
In cli/cli, determine if `normalizeJSON` and `Valid` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/normalizeJSON().` - Symbol B: `scip-go gomod github.com/muhammadmuzzammil1998/jsonc v1.0.0 `github.com/muhammadmuzzammil1998/jsonc`/Valid().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/normalizeJSON().
scip-go gomod github.com/muhammadmuzzammil1998/jsonc v1.0.0 `github.com/muhammadmuzzammil1998/jsonc`/Valid().
normalizeJSON
Valid
false
null
null
cli/cli
In cli/cli, determine if `deleteRun` and `URL#Hostname` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/deleteRun().` - Symbol B: `scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/deleteRun().
scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().
deleteRun
URL#Hostname
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/deleteRun().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/getGPGKeys().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().", "scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname()." ]
cli/cli
In cli/cli, determine if `searcher#Issues` and `quote` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Issues().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/quote().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Issues().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/quote().
searcher#Issues
quote
true
4
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#Issues().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/searcher#search().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/Query#AdvancedIssueSearchString().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/formatQualifiers().", "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/search`/quote()." ]
cli/cli
In cli/cli, determine if `ParsePushDefault` and `As` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/ParsePushDefault().` - Symbol B: `scip-go gomod github.com/golang/go/src . errors/As().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/ParsePushDefault().
scip-go gomod github.com/golang/go/src . errors/As().
ParsePushDefault
As
false
null
null
cli/cli
In cli/cli, determine if `printResults` and `Client#NewOwner` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-delete`/printResults().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-delete`/printResults().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().
printResults
Client#NewOwner
false
null
null
cli/cli
In cli/cli, determine if `PullRequestRevert` and `generateScopesSuggestion` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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`/PullRequestRevert().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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`/PullRequestRevert().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().
PullRequestRevert
generateScopesSuggestion
true
3
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/PullRequestRevert().", "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/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()." ]
cli/cli
In cli/cli, determine if `cfg#GitProtocol` and `cfg#Prompt` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GitProtocol().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Prompt().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GitProtocol().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Prompt().
cfg#GitProtocol
cfg#Prompt
false
null
null
cli/cli
In cli/cli, determine if `firstConfiguredKeyPair` and `generateAutomaticSSHKeys` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/firstConfiguredKeyPair().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/generateAutomaticSSHKeys().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/firstConfiguredKeyPair().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/generateAutomaticSSHKeys().
firstConfiguredKeyPair
generateAutomaticSSHKeys
false
null
null
cli/cli
In cli/cli, determine if `getTunnelManager` and `getTunnelClient` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelManager().` - Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelClient().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelManager().
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/connection`/getTunnelClient().
getTunnelManager
getTunnelClient
false
null
null
cli/cli
In cli/cli, determine if `MetadataSurvey` and `NoError` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/MetadataSurvey().` - Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/MetadataSurvey().
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
MetadataSurvey
NoError
false
null
null
cli/cli
In cli/cli, determine if `TestNewCmdEdit` and `NoError` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the call chain. **Qualified names for reference:** - Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/TestNewCmdEdit().` - Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_LINKED` if they only share a common caller
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/TestNewCmdEdit().
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().
TestNewCmdEdit
NoError
true
1
[ "scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/TestNewCmdEdit().", "scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError()." ]
cli/cli
In cli/cli, determine if `NewCmdDelete` and `Command#SetArgs` are linked. **Definition:** - LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A) - NOT LINKED: they only share a common caller (siblings in the call tree) **Your task:** Use ripgrep (rg) commands to search the codebase and trace the 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/delete`/NewCmdDelete().` - Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetArgs().` When you have determined the answer, respond with either: - `ANSWER: LINKED` if one function can reach the other through calls - `ANSWER: NOT_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/delete`/NewCmdDelete().
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetArgs().
NewCmdDelete
Command#SetArgs
false
null
null
cli/cli