I assume that you are using anonymous constructor syntax, for example:
MyClass = function(config) { ... } Ext.extend(MyClass, SomeOtherClass, { ... });
If so, this form cannot be detected using Ext4 or the compatibility level and must be updated manually to the new standard Ext.define syntax. I am not sure if this is mentioned in the migration documentation, and if not, I will add it.
source share