patch 8.2.0419: various memory leaks in Vim9 script code

Problem:    Various memory leaks in Vim9 script code.
Solution:   Fix the leaks. (Ozaki Kiichi, closes #5814)
diff --git a/src/structs.h b/src/structs.h
index 76d45ea..ff32cb2 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1308,6 +1308,7 @@
     int		cb_free_name;	    // cb_name was allocated
 } callback_T;
 
+typedef struct isn_S isn_T;	    // instruction
 typedef struct dfunc_S dfunc_T;	    // :def function
 
 typedef struct jobvar_S job_T;