comparison src/errors.h @ 27764:1662d2d2e27b v8.2.4408

patch 8.2.4408: Vim9: some code not covered by tests Commit: https://github.com/vim/vim/commit/ea5c898b5fb60828b0223f258910f84f5c645e63 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 17 14:42:02 2022 +0000 patch 8.2.4408: Vim9: some code not covered by tests Problem: Vim9: some code not covered by tests. Solution: Add a few more tests. Correct error message. Allow unlet on dict with a number key.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Feb 2022 15:45:03 +0100
parents d754ac2f5ac5
children 6a0ecde89d35
comparison
equal deleted inserted replaced
27763:87459cbe6138 27764:1662d2d2e27b
3008 #ifdef FEAT_EVAL 3008 #ifdef FEAT_EVAL
3009 EXTERN char e_variable_arguments_type_must_be_list_str[] 3009 EXTERN char e_variable_arguments_type_must_be_list_str[]
3010 INIT(= N_("E1180: Variable arguments type must be a list: %s")); 3010 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
3011 EXTERN char e_cannot_use_underscore_here[] 3011 EXTERN char e_cannot_use_underscore_here[]
3012 INIT(= N_("E1181: Cannot use an underscore here")); 3012 INIT(= N_("E1181: Cannot use an underscore here"));
3013 EXTERN char e_blob_required[] 3013 // E1182 unused
3014 INIT(= N_("E1182: Blob required"));
3015 EXTERN char e_cannot_use_range_with_assignment_operator_str[] 3014 EXTERN char e_cannot_use_range_with_assignment_operator_str[]
3016 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s")); 3015 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
3017 #endif 3016 #endif
3018 #ifdef FEAT_EVAL 3017 #ifdef FEAT_EVAL
3019 EXTERN char e_blob_not_set[] 3018 EXTERN char e_blob_not_set[]