()
| 210 | } |
| 211 | |
| 212 | func (m *Manager) Keys() []uri.URI { |
| 213 | m.mu.Lock() |
| 214 | defer m.mu.Unlock() |
| 215 | keys := make([]uri.URI, 0, len(m.docs)) |
| 216 | for k := range m.docs { |
| 217 | keys = append(keys, k) |
| 218 | } |
| 219 | return keys |
| 220 | } |
| 221 | |
| 222 | func (m *Manager) readAndParse(ctx context.Context, u uri.URI) (bool, error) { |
| 223 | identifier := protocol.DockerfileLanguage |
no outgoing calls
no test coverage detected