yishayw opened a new issue #164:
URL: https://github.com/apache/royale-compiler/issues/164
The error shouldn't be reported
On this app:
```
<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.apache.org/royale/spark"
xmlns:comp="components.*"
>
<comp:CollapsiblePanel/>
</s:Application>
```
With this component
```
<?xml version="1.0" encoding="utf-8"?>
<s:SkinnableContainer
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.apache.org/royale/spark"
skinClass="components.CollapsiblePanelSkin"
focusEnabled="false"
>
<fx:Metadata>
[SkinState("myState")]
</fx:Metadata>
</s:SkinnableContainer>
```
With this skin:
```
<?xml version="1.0" encoding="utf-8"?>
<s:SparkSkin
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.apache.org/royale/spark"
xmlns:mx="library://ns.apache.org/royale/mx"
>
<fx:Metadata>
[HostComponent("components.CollapsiblePanel")]
</fx:Metadata>
<s:states>
<s:State name="myState"/>
</s:states>
</s:SparkSkin>
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]