RE: [flexcoders] Weird stacktrace in Console panel

2008-04-11 Thread Alex Harui
Verify errors often happen when code is compiled with different compilers then mixed together. Make sure every bit of code has been compiled with the same compiler version. It can also be caused by naming collisions between variables. It can also be (on rare occasions) a bug in the

Re: [flexcoders] Weird stacktrace in Console panel

2008-04-11 Thread João Fernandes
Alex, in fact it was a missing break in a switch statement. After adding the missing break; it started working again. Shouldn't the compiler check for the missing break ? -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org Portugal Adobe User Group (http://aug.riapt.org)

Re: [flexcoders] Weird stacktrace in Console panel

2008-04-11 Thread Maciek Sakrejda
Message- From: João Fernandes [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Weird stacktrace in Console panel Date: Sat, 12 Apr 2008 00:31:23 +0100 Alex, in fact it was a missing break in a switch statement. After adding the missing

Re: [flexcoders] Weird stacktrace in Console panel

2008-04-11 Thread João Fernandes
But the problem is, the runtime error thrown isn't clear what the real problem is, it says that a classA and classA could not be reconciled when the real problem is that a break statement is missing, maybe a warning should be present when between two 'case' there is no break statement. --

RE: [flexcoders] Weird stacktrace in Console panel

2008-04-11 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Weird stacktrace in Console panel Alex, in fact it was a missing break in a switch statement. After adding the missing break; it started working again. Shouldn't the compiler check for the missing break ? -- João Fernandes http