(command : Command)
| 245 | |
| 246 | # Comma separate the names of the parameters. ex) foo, bar, baz |
| 247 | def command_param_usage_text(command : Command): |
| 248 | return ', '.join(p.name for p in command.params) |
| 249 | |
| 250 | def get_fulltype(var): |
| 251 | custom_fullType = var.fullType |
no outgoing calls
no test coverage detected