|
From: strk <st...@ke...> - 2009-03-27 09:46:22
|
FYI: I've filed this as http://bugs.libming.org/show_bug.cgi?id=85 so we don't loose track of it. --strk; Free GIS & Flash consultant/developer () ASCII Ribbon Campaign http://foo.keybit.net/~strk/services.html /\ Keep it simple! On Sat, Dec 13, 2008 at 09:17:25AM -0800, mm w wrote: > test AS2 template CS3 > > function testbranches(a) > { > switch(a) > { > case 1: > if (0) { trace("go comment 0"); break; } > trace("test 1"); > break; > } > } > > a=1; > testbranches(a); > > a=1; > testbranches(a); > > switch(a) > { > case 1: > if (0) { trace("go comment 0"); break; } > trace("test 1"); > break; > } > > output // no error or warning > > test 1 > test 1 > test 1 > > > On Sat, Dec 13, 2008 at 6:20 AM, strk <st...@ke...> wrote: > > Ming doesn't support this: > > > > a=1; > > switch(a) > > { > > case 1: > > if (0) { break; } > > break; > > } > > > > Should it ? Do the adobe tool accept it? > > > > --strk; |