(arg_list)
| 378 | ] |
| 379 | |
| 380 | def generateFunctionArguments(arg_list): |
| 381 | args = [] |
| 382 | for param in arg_list: |
| 383 | name = param['properties']['identifier'] |
| 384 | args.append(ast.arg(name)) |
| 385 | return ast.arguments( |
| 386 | posonlyargs=[], |
| 387 | args=args, |
| 388 | kwonlyargs=[], |
| 389 | kw_defaults=[], |
| 390 | defaults=[]) |
| 391 | |
| 392 | def generateFunctionStatement(func_node): |
| 393 | nameIdentifier = func_node['childSets']['identifier'][0]['properties']['identifier'] |
no outgoing calls
no test coverage detected