Hi, Every once in a while, the framework code uses an “internal class”. An examples would look like:
package some.package { public class SomeClass { } } class SomeHelperClass { } SomeHelperClass is an “internal class”. In JS, SomeHelperClass gets defined on the global object. I’m wondering if that’s bad and we should ban internal classes in FlexJS? Right now there’s a bunch of bugs in generating JS for these internal classes, so I’m trying to decide whether to fix them, or just not use internal classes anymore. Thoughts? -Alex