updateDocs updates the code comments in dir with doc urls from metadata.
(opsFile *operationsFile, dir string)
| 355 | |
| 356 | // updateDocs updates the code comments in dir with doc urls from metadata. |
| 357 | func updateDocs(opsFile *operationsFile, dir string) error { |
| 358 | return visitServiceMethods(dir, true, updateDocsVisitor(opsFile)) |
| 359 | } |
| 360 | |
| 361 | type nodeVisitor func(serviceMethod string, fn *ast.FuncDecl, cmap ast.CommentMap) error |
| 362 |
no test coverage detected
searching dependent graphs…