(node *nodes.Node)
| 35 | } |
| 36 | |
| 37 | func IsNamedParamSign(node *nodes.Node) bool { |
| 38 | expr, ok := node.Node.(*nodes.Node_AExpr) |
| 39 | return ok && joinNodes(expr.AExpr.Name, ".") == "@" |
| 40 | } |
| 41 | |
| 42 | func makeByte(s string) byte { |
| 43 | var b byte |
nothing calls this directly
no test coverage detected