patch 9.0.1140: cannot call an object method in a compiled function
Problem: Cannot call an object method in a compiled function.
Solution: Compile the instructins to invoke an object method.
diff --git a/src/structs.h b/src/structs.h
index 3bc9278..50260ae 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1822,8 +1822,8 @@
// copy_lambda_to_global_func()
#define FC_LAMBDA 0x2000 // one line "return {expr}"
-#define FC_OBJECT 010000 // object method
-#define FC_NEW 030000 // constructor (also an object method)
+#define FC_OBJECT 0x4000 // object method
+#define FC_NEW 0x8000 // constructor
#define MAX_FUNC_ARGS 20 // maximum number of function arguments
#define VAR_SHORT_LEN 20 // short variable name length