(_ context.Context, params *GetTypePropertyParams)
| 1532 | } |
| 1533 | |
| 1534 | func (s *Session) handleGetLocalTypeParametersOfType(_ context.Context, params *GetTypePropertyParams) ([]*TypeResponse, error) { |
| 1535 | return s.resolveTypeArrayPropertyOfType(params, func(t *checker.Type) []*checker.Type { return t.AsInterfaceType().LocalTypeParameters() }) |
| 1536 | } |
| 1537 | |
| 1538 | func (s *Session) handleGetAliasTypeArgumentsOfType(_ context.Context, params *GetTypePropertyParams) ([]*TypeResponse, error) { |
| 1539 | return s.resolveTypeArrayPropertyOfType(params, func(t *checker.Type) []*checker.Type { |
no test coverage detected