Open Katsuya100 opened 1 year ago
I would like to be able to implement the following to support C# and C++ static variable bindings.
class StaticGetSample { function _get(key) { switch (key) { case "foo": return "a"; case "bar": return "b"; } return null; } } // output `a`. print(StaticGetSample.foo);
Meta method call of SQClass was implemented with reference to the implementation of SQInstance.
I would like to be able to implement the following to support C# and C++ static variable bindings.
Meta method call of SQClass was implemented with reference to the implementation of SQInstance.