ReportErrorAtID logs an error during parsing which is included in the issue set returned from a failed parse.
(id int64, format string, args ...any)
| 905 | // ReportErrorAtID logs an error during parsing which is included in the issue set returned from |
| 906 | // a failed parse. |
| 907 | func (p *parserImpl) ReportErrorAtID(id int64, format string, args ...any) { |
| 908 | p.iss.ReportErrorAtID(id, format, args...) |
| 909 | } |
| 910 | |
| 911 | func (p *parserImpl) checkMapValid(ctx ParserContext, id int64, node *yaml.Node) bool { |
| 912 | valid := len(node.Content)%2 == 0 |
no test coverage detected