Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/coder/coder
/ unparen
Function
unparen
scripts/intxcheck/analyzer.go:593–601 ·
view source on GitHub ↗
(expr ast.Expr)
Source
from the content-addressed store, hash-verified
591
}
592
593
func
unparen(expr ast.Expr) ast.Expr {
594
for
{
595
paren, ok := expr.(*ast.ParenExpr)
596
if
!ok {
597
return
expr
598
}
599
expr = paren.X
600
}
601
}
Callers
8
run
Function · 0.85
funcLitCall
Function · 0.85
resolveSamePackageCallee
Function · 0.85
newOuterStoreMatcher
Function · 0.85
declaredIdentForm
Function · 0.85
rootIdentAndSuffix
Function · 0.85
callReceiver
Function · 0.85
exprString
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected