comparison src/vim9type.c @ 25135:5731bcaaabcb v8.2.3104

patch 8.2.3104: Vim9: unspecified function type causes type error Commit: https://github.com/vim/vim/commit/b7480cd8931fa1696265f75c7d4d9fdf0be69e12 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 4 18:28:15 2021 +0200 patch 8.2.3104: Vim9: unspecified function type causes type error Problem: Vim9: unspecified function type causes type error. Solution: Don't check type when min_argcount is negative. (issue https://github.com/vim/vim/issues/8492)
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Jul 2021 18:30:03 +0200
parents b825efff9790
children 34f18d4081af
comparison
equal deleted inserted replaced
25134:2edd38379795 25135:5731bcaaabcb
524 if (expected->tt_member != &t_unknown 524 if (expected->tt_member != &t_unknown
525 && actual->tt_member != &t_unknown) 525 && actual->tt_member != &t_unknown)
526 ret = check_type(expected->tt_member, actual->tt_member, 526 ret = check_type(expected->tt_member, actual->tt_member,
527 FALSE, where); 527 FALSE, where);
528 if (ret == OK && expected->tt_argcount != -1 528 if (ret == OK && expected->tt_argcount != -1
529 && actual->tt_min_argcount != -1
529 && (actual->tt_argcount == -1 530 && (actual->tt_argcount == -1
530 || (actual->tt_argcount < expected->tt_min_argcount 531 || (actual->tt_argcount < expected->tt_min_argcount
531 || actual->tt_argcount > expected->tt_argcount))) 532 || actual->tt_argcount > expected->tt_argcount)))
532 ret = FAIL; 533 ret = FAIL;
533 if (ret == OK && expected->tt_args != NULL 534 if (ret == OK && expected->tt_args != NULL