; To: dev@flex.apache.org
> Subject: RE: [Falcon] Constructor NS (was: [Falcon] starting up)
> Date: Sun, 5 Oct 2014 06:55:47 +0100
>
> Gorgon, sorry as well, I didn't mean FB but FP, I use to write faster than I
> think :P
>
> Frédéric THOMAS
>
> > From: we
Gorgon, sorry as well, I didn't mean FB but FP, I use to write faster than I
think :P
Frédéric THOMAS
> From: webdoubl...@hotmail.com
> To: dev@flex.apache.org
> Subject: RE: [Falcon] Constructor NS (was: [Falcon] starting up)
> Date: Sun, 5 Oct 2014 06:31:26 +0100
>
> @
to review
> it if you don't mind, and for the reflection maybe there will be some tricks
> but as I do it at the moment, even the legacy compiler raise a verify error
> when I try to instantiate a class with a private ctor.
>
>
> Frédéric THOMAS
>
> > Subj
compiler raise a verify error when I try
to instantiate a class with a private ctor.
Frédéric THOMAS
> Subject: Re: [Falcon] Constructor NS (was: [Falcon] starting up)
> From: gsmit...@hotmail.com
> Date: Sat, 4 Oct 2014 19:35:42 -0700
> To: dev@flex.apache.org
>
> In general
In general the ActionScript Virtual Machine enforces access modifiers (so that,
for example, something marked private is truly inaccessible by any means
outside the class) but I don't think the AVM enforces non-public constructors.
I'm guessing that a constructor in the ABC is public regardless
On Oct 4, 2014 12:55 PM, "Frédéric THOMAS" wrote:
>
> Hi,
>
> I started to check if it was possible to have private and protected
constructor in Falcon and I have to admit it was tricky especially because
I never seen a compiler from inside before but it is apparently possible,
I've been able to c