MCPcopy 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
593func 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

runFunction · 0.85
funcLitCallFunction · 0.85
resolveSamePackageCalleeFunction · 0.85
newOuterStoreMatcherFunction · 0.85
declaredIdentFormFunction · 0.85
rootIdentAndSuffixFunction · 0.85
callReceiverFunction · 0.85
exprStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected