(key: string)
| 332 | return new VimError(ErrorCode.DictionaryRequired, 'Dictionary required'); |
| 333 | } |
| 334 | static KeyNotPresentInDictionary(key: string): VimError { |
| 335 | return new VimError( |
| 336 | ErrorCode.KeyNotPresentInDictionary, |
| 337 | `Key not present in Dictionary: ${key}`, |
| 338 | ); |
| 339 | } |
| 340 | static CannotUseSliceWithADictionary(): VimError { |
| 341 | return new VimError( |
| 342 | ErrorCode.CannotUseSliceWithADictionary, |
no outgoing calls
no test coverage detected