Fail reports a problem and exits the program.
(msgs ...string)
| 437 | |
| 438 | // Fail reports a problem and exits the program. |
| 439 | func (g *Generator) Fail(msgs ...string) { |
| 440 | s := strings.Join(msgs, " ") |
| 441 | log.Print("protoc-gen-go: error:", s) |
| 442 | os.Exit(1) |
| 443 | } |
| 444 | |
| 445 | // CommandLineParameters breaks the comma-separated list of key=value pairs |
| 446 | // in the parameter (a member of the request protobuf) into a key/value map. |
no outgoing calls
no test coverage detected