readMetatable method
If this lua object has a meta table
thenr reads _metatable by string key
and returns the value.
Otherwise null is returned.
Implementation
Object? readMetatable(String key) {
uses++;
_onRead?.call(key);
if (skipSemanitcs) return LuaObjectNoSemantics(key);
return deref()._metatable?.readField(key);
}