(_ context.Context, params *GetTypePropertyParams)
| 1516 | } |
| 1517 | |
| 1518 | func (s *Session) handleGetRegularTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1519 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsLiteralType().RegularType() }) |
| 1520 | } |
| 1521 | |
| 1522 | func (s *Session) handleGetTypesOfType(_ context.Context, params *GetTypePropertyParams) ([]*TypeResponse, error) { |
| 1523 | return s.resolveTypeArrayPropertyOfType(params, (*checker.Type).Types) |
no test coverage detected