generate a random identifier name
()
| 18 | |
| 19 | // generate a random identifier name |
| 20 | func randIdent() string { |
| 21 | identNext++ |
| 22 | return fmt.Sprintf("%s%04d", identPrefix, identNext) |
| 23 | } |
| 24 | |
| 25 | // This code defines the type declaration tree. |
| 26 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…