In it's current state the codemod transforms {{foo}} always to {{this.foo}} (skipping template-only components). It should transform {{foo}} to {{@foo}} instead if the property is not defined by the class of the codemod.
It may always transform to {{this.foo}} if the component extends from another component cause parsing parent classes may be to complex. It should print a warning in that case.
In it's current state the codemod transforms
{{foo}}always to{{this.foo}}(skipping template-only components). It should transform{{foo}}to{{@foo}}instead if the property is not defined by the class of the codemod.It may always transform to
{{this.foo}}if the component extends from another component cause parsing parent classes may be to complex. It should print a warning in that case.