(ftype string, msg string)
| 928 | } |
| 929 | |
| 930 | func (dec *Decoder) appendWarn(ftype string, msg string) { |
| 931 | |
| 932 | wline := fmt.Sprintf("%s(%d): %s", ftype, dec.line, msg) |
| 933 | dec.Warnings = append(dec.Warnings, wline) |
| 934 | } |
no outgoing calls
no test coverage detected