patch 8.2.0751: Vim9: performance can be improved

Problem:    Vim9: performance can be improved.
Solution:   Don't call break.  Inline check for list materialize.  Make an
            inline version of ga_grow().
diff --git a/src/evalvars.c b/src/evalvars.c
index 01aef1a..e747230 100644
--- a/src/evalvars.c
+++ b/src/evalvars.c
@@ -863,7 +863,7 @@
 	return FAIL;
     }
 
-    range_list_materialize(l);
+    CHECK_LIST_MATERIALIZE(l);
     item = l->lv_first;
     while (*arg != ']')
     {