TypeRef produces the JSON reference to the type definition.
(api *expr.APIExpr, ut *expr.UserTypeExpr)
| 255 | |
| 256 | // TypeRef produces the JSON reference to the type definition. |
| 257 | func TypeRef(api *expr.APIExpr, ut *expr.UserTypeExpr) string { |
| 258 | return TypeRefWithPrefix(api, ut, "") |
| 259 | } |
| 260 | |
| 261 | // TypeRefWithPrefix produces the JSON reference to the type definition and adds the provided prefix |
| 262 | // to the type name |
nothing calls this directly
no test coverage detected