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.

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

Reply via email to