(tags)
| 282 | return path, file |
| 283 | |
| 284 | def _create_doc_info(tags): |
| 285 | info = script_doc_ddf_pb2.Info() |
| 286 | info.path, info.file = _parse_path(tags["path"]) |
| 287 | if tags["path"] == "": |
| 288 | logging.warning('Missing tag @path for @name %s' % tags["name"]) |
| 289 | info.namespace = tags.get("namespace", "") |
| 290 | return info |
| 291 | |
| 292 | def _create_doc_element(tags): |
| 293 | element = script_doc_ddf_pb2.Element() |
no test coverage detected