Accesses an element inside an object by using a member name
.
op_MemberAccess(other)
table = {
a = true,
op_MemberAccess = function(other)
{
if(other == "a" || other == "b")
{
return table.a
}
return null
}
}
b1 = table.a //returns value of a
b1 = table.b //returns value of a