(_ context.Context, params *GetTypePropertyParams)
| 1508 | } |
| 1509 | |
| 1510 | func (s *Session) handleGetTargetOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1511 | return s.resolveTypePropertyOfType(params, (*checker.Type).Target) |
| 1512 | } |
| 1513 | |
| 1514 | func (s *Session) handleGetFreshTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1515 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsLiteralType().FreshType() }) |
no test coverage detected