php-transpiler
php-transpiler copied to clipboard
Finish Implementing Removal of Pure Getter Calls
Currently code is there to identify functions that are nothing but getters. using this to remove getter calls by making the variable that is retrieved public instead + turning the getter calls into property access is missing yet. Getter functions themselves should not be removed though since for now it's simply too involved to make sure they aren't used anywhere in some dynamic way.