Hi All!
If I run into a stack overflow problem such as this, do you want more details on it, or should I just debug and keep moving?
"[string "property.lua"]:59: stack overflow"
Generally I thought that these type of errors wanted to be "hidden" to gideros users (that is, errors in gideros files). This is the top level error.
Thanks,
Inci
Comments
But mostly this kind of errors are user generated and not fully Gideros related (maybe more a misuse then a bug )
But any pointers as to what is happening are great, so please do post
It was caused by an odd bit of circular reference.
Class A inherited from Class B, but Class B created an instance of Class A internally...so it got very messy, very quickly!
Thanks for the response @ar2rsawseen...super quick as always!