Args is a series of function call arguments.
| 217 | |
| 218 | // Args is a series of function call arguments. |
| 219 | type Args struct { |
| 220 | // Values is the arguments as shown on the stack trace. They are mangled via |
| 221 | // simplification. |
| 222 | Values []Arg |
| 223 | // Processed is the arguments generated from processing the source files. It |
| 224 | // can have a length lower than Values. |
| 225 | Processed []string |
| 226 | // Elided when set means there was a trailing ", ...". |
| 227 | Elided bool |
| 228 | |
| 229 | // Disallow initialization with unnamed parameters. |
| 230 | _ struct{} |
| 231 | } |
| 232 | |
| 233 | func (a *Args) String() string { |
| 234 | var v []string |
nothing calls this directly
no outgoing calls
no test coverage detected