()
| 389 | return new VimError(ErrorCode.NoPreviouslyUsedRegister, 'No previously used register'); |
| 390 | } |
| 391 | static CannotUseModuloWithFloat(): VimError { |
| 392 | return new VimError(ErrorCode.CannotUseModuloWithFloat, "Cannot use '%' with Float"); |
| 393 | } |
| 394 | static UsingAFloatAsANumber(): VimError { |
| 395 | return new VimError(ErrorCode.UsingAFloatAsANumber, 'Using a Float as a Number'); |
| 396 | } |
no outgoing calls
no test coverage detected