(node *nodes.Node)
| 30 | } |
| 31 | |
| 32 | func IsNamedParamFunc(node *nodes.Node) bool { |
| 33 | fun, ok := node.Node.(*nodes.Node_FuncCall) |
| 34 | return ok && joinNodes(fun.FuncCall.Funcname, ".") == "sqlc.arg" |
| 35 | } |
| 36 | |
| 37 | func IsNamedParamSign(node *nodes.Node) bool { |
| 38 | expr, ok := node.Node.(*nodes.Node_AExpr) |
nothing calls this directly
no test coverage detected