(flag jsonCommandFlag)
| 106 | } |
| 107 | |
| 108 | func commandInputSchemaIncludesFlag(flag jsonCommandFlag) bool { |
| 109 | switch flag.Name { |
| 110 | case "help", outputFlag: |
| 111 | return false |
| 112 | default: |
| 113 | return true |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | func commandInputPropertyNames(names []string) []string { |
| 118 | result := make([]string, 0, len(names)) |
no outgoing calls
no test coverage detected