(schema *schema.Schema)
| 425 | func (p properties) Less(i, j int) bool { return p[i].ID < p[j].ID } |
| 426 | |
| 427 | func sortProperties(schema *schema.Schema) { |
| 428 | sort.Sort(properties(schema.Properties)) |
| 429 | } |
| 430 | |
| 431 | //ByName is alias type for handling gohanCommands |
| 432 | type ByName []gohanCommand |
no test coverage detected