| 13 | ) |
| 14 | |
| 15 | type command struct { |
| 16 | Src string |
| 17 | variablesAssigned []string |
| 18 | variablesDeclared []string |
| 19 | isExpression bool |
| 20 | Hidden bool |
| 21 | isCallExpression bool |
| 22 | calleeName string |
| 23 | } |
| 24 | |
| 25 | type function struct { |
| 26 | Name string |
nothing calls this directly
no outgoing calls
no test coverage detected