ReportErrorAtID logs an error during parsing which is included in the issue set returned from a failed parse.
(id int64, format string, args ...any)
| 961 | // ReportErrorAtID logs an error during parsing which is included in the issue set returned from |
| 962 | // a failed parse. |
| 963 | func (p *parserImpl) ReportErrorAtID(id int64, format string, args ...any) { |
| 964 | p.iss.ReportErrorAtID(id, format, args...) |
| 965 | } |
| 966 | |
| 967 | func (p *parserImpl) checkMapValid(ctx ParserContext, id int64, node *yaml.Node) bool { |
| 968 | valid := len(node.Content)%2 == 0 |
no test coverage detected