Convert `Vec ` to `Vec >`, discarding entries without class info (scalars, shapes, unresolvable types).
(resolved: Vec<ResolvedType>)
| 322 | /// Convert `Vec<ResolvedType>` to `Vec<Arc<ClassInfo>>`, discarding |
| 323 | /// entries without class info (scalars, shapes, unresolvable types). |
| 324 | fn resolved_to_arcs(resolved: Vec<ResolvedType>) -> Vec<Arc<ClassInfo>> { |
| 325 | ResolvedType::into_arced_classes(resolved) |
| 326 | } |
| 327 | |
| 328 | /// Resolve a completion subject to all candidate types, preserving |
| 329 | /// both class info and type strings. |
no outgoing calls
no test coverage detected