(method, class_key)
| 268 | |
| 269 | |
| 270 | def gen_method_indx(method, class_key): |
| 271 | method_name = method['def_name'] |
| 272 | method_key = join([class_key, method_name], '.') |
| 273 | method_def = gen_doc_method_def(method, True) |
| 274 | return join([ |
| 275 | brackets(method_def), |
| 276 | parentheses(method_key), ' ', |
| 277 | sub(italic('Method'))]) |
| 278 | |
| 279 | |
| 280 | def add_doc_method_param(md, param): |
no test coverage detected