On 29.05.2014 19:08, Frédéric THOMAS wrote:
The lasted FDB: https://issues.apache.org/jira/browse/FLEX-34342 (Break and
Clear command should accept paths)
Works great!
However I was lucky to catch one tricky regression.
If MXML file contains inline item renderer(s) then this mxml file has
more than one IDs. FDB from Flex SDK 4.12 is able to set breakpoint by
'break App.mxml:20', but your latest FDB says
Ambiguous matching file names:
App.mxml#68
App.mxml#168
and it is impossible to set breakpoint using full path as it is the same
file.
Example to reproduce:
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<s:List dataProvider="{new ArrayList([1, 2, 3])}">
<s:itemRenderer>
<fx:Component>
<s:Button/>
</fx:Component>
</s:itemRenderer>
</s:List>
<fx:Script><![CDATA[
import mx.collections.ArrayList;
]]></fx:Script>
</s:Application>