GoTypeName returns the Go type name of the given attribute type.
(att *expr.AttributeExpr)
| 276 | |
| 277 | // GoTypeName returns the Go type name of the given attribute type. |
| 278 | func (s *NameScope) GoTypeName(att *expr.AttributeExpr) string { |
| 279 | return s.GoFullTypeName(att, "") |
| 280 | } |
| 281 | |
| 282 | // GoTypeNameWithDefaults returns the Go type name of the given attribute type. |
| 283 | // The result of this function differs from GoTypeName when the attribute type |