toPointer converts an int to a pointer without a temporary variable at the call-site, and is used by the generated schemas
(x int)
| 5 | // toPointer converts an int to a pointer without a temporary |
| 6 | // variable at the call-site, and is used by the generated schemas |
| 7 | func toPointer(x int) *int { |
| 8 | return &x |
| 9 | } |
| 10 | |
| 11 | func NewCatalog() *catalog.Catalog { |
| 12 | c := catalog.New("public") |
no outgoing calls
no test coverage detected