On Mon, Nov 16, 2015 at 11:28 AM, Alex Harui <aha...@adobe.com> wrote:
> > > On 11/16/15, 2:38 AM, "Michael Schmalle" <teotigraphix...@gmail.com> > wrote: > > >It's important. You need to figure out how to do it in JS first, then bend > >the compiler to your will. :) > > > >In a SWF decompile, these are labeled private class. > > OK. Well AFAIK, there is no such thing as private classes in JS. One > thought I had was to implement them as “inner classes” in JS. > Ok well I was referring to how IDEA shows them and it shows private classes out side with the private identifier. Anyway, not really the point, I forget how we did this in Randori but I know I supported inner classes with that compiler. Mike > > So the output for: > > >> > >> package some.package > >> { > >> public class SomeClass > >> { > >> } > >> } > >> > >> class SomeHelperClass > >> { > >> } > > would be: > > some.package.SomeClass = function() {} > > some.package.SomeClass.SomeHelperClass = function() {} > > Thoughts? > -Alex > >