patch 8.2.1894: Vim9: command modifiers are not supported

Problem:    Vim9: command modifiers are not supported.
Solution:   Support "silent" and "silent!".
diff --git a/src/vim9.h b/src/vim9.h
index 68b9bfa..8056c60 100644
--- a/src/vim9.h
+++ b/src/vim9.h
@@ -142,6 +142,9 @@
 
     ISN_PUT,	    // ":put", uses isn_arg.put
 
+    ISN_SILENT,	    // set msg_silent or emsg_silent if arg_number is non-zero
+    ISN_UNSILENT,   // undo ISN_SILENT
+
     ISN_SHUFFLE,    // move item on stack up or down
     ISN_DROP	    // pop stack and discard value
 } isntype_T;