Fail reports a problem and exits the program.
(msgs ...string)
| 415 | |
| 416 | // Fail reports a problem and exits the program. |
| 417 | func (g *Generator) Fail(msgs ...string) { |
| 418 | s := strings.Join(msgs, " ") |
| 419 | log.Print("protoc-gen-hw: error:", s) |
| 420 | os.Exit(1) |
| 421 | } |
| 422 | |
| 423 | // CommandLineParameters breaks the comma-separated list of key=value pairs |
| 424 | // in the parameter (a member of the request protobuf) into a key/value map. |
no outgoing calls
no test coverage detected