You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Cyrill Zadra (JIRA)" <ji...@apache.org> on 2013/09/12 12:23:51 UTC

[jira] [Resolved] (FLEX-33301) Falcon can't compile advancedgrids

     [ https://issues.apache.org/jira/browse/FLEX-33301?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cyrill Zadra resolved FLEX-33301.
---------------------------------

    Resolution: Fixed
    
> Falcon can't compile advancedgrids
> ----------------------------------
>
>                 Key: FLEX-33301
>                 URL: https://issues.apache.org/jira/browse/FLEX-33301
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Falcon
>    Affects Versions: Apache Falcon 1.0
>            Reporter: Chema Balsas
>            Assignee: Cyrill Zadra
>              Labels: Falcon
>             Fix For: Apache Falcon 1.0
>
>
> Falcon fails to compile the advancedgrids project in test advancedgridsSWC.
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4734
> Warning: Metadata was not bound to a definition
>                                                                               [cellColumn];
>                                                                               ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4815
> Error: 'super' is not allowed here
>             super.maxHorizontalScrollPosition =
>             ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4818
> Error: 'super' is not allowed here
>                 super.maxHorizontalScrollPosition;
>                 ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:7770
> Warning: Assignment within conditional.  Did you mean == instead of =?
> 				if (rowIndicators && (columnIndicator = rowIndicators[columnIndex.toString()]))
> 				                      ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:3971
> Warning: variable definition duplicates function parameter: height.
>         var height:Number = Math.min(height,
>             ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:7945
> Warning: variable definition duplicates function parameter: event.
>             var event:AdvancedDataGridEvent =
>                 ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:988
> Warning: variable definition duplicates function parameter: height.
>         var height:Number = Math.min(height,
>             ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
> Error: Incorrect number of arguments.  Expected no more than 1
>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>                         ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
> Error: Implicit coercion of a value of type IOLAPAxisPosition to an unrelated type Function.
>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>                                       ^
> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as:6081
> Warning: variable definition duplicates function parameter: index.
>                 var index:int = bookmark.getViewIndex();
>                     ^

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Re: [jira] [Resolved] (FLEX-33301) Falcon can't compile advancedgrids

Posted by Erik de Bruin <er...@ixsoftware.nl>.
Oh, hold on, I missed your last commits... re-checking.

EdB



On Thu, Sep 12, 2013 at 1:01 PM, Erik de Bruin <er...@ixsoftware.nl> wrote:
> Cyrill,
>
> How did you get this to work? I'm currently trying to run all SWCs
> through Falcon, but 'advancedgrids' gives me 2 errors and 3
> warnings...
>
> EdB
>
>
>
> On Thu, Sep 12, 2013 at 12:23 PM, Cyrill Zadra (JIRA) <ji...@apache.org> wrote:
>>
>>      [ https://issues.apache.org/jira/browse/FLEX-33301?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>>
>> Cyrill Zadra resolved FLEX-33301.
>> ---------------------------------
>>
>>     Resolution: Fixed
>>
>>> Falcon can't compile advancedgrids
>>> ----------------------------------
>>>
>>>                 Key: FLEX-33301
>>>                 URL: https://issues.apache.org/jira/browse/FLEX-33301
>>>             Project: Apache Flex
>>>          Issue Type: Bug
>>>          Components: Falcon
>>>    Affects Versions: Apache Falcon 1.0
>>>            Reporter: Chema Balsas
>>>            Assignee: Cyrill Zadra
>>>              Labels: Falcon
>>>             Fix For: Apache Falcon 1.0
>>>
>>>
>>> Falcon fails to compile the advancedgrids project in test advancedgridsSWC.
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4734
>>> Warning: Metadata was not bound to a definition
>>>                                                                               [cellColumn];
>>>                                                                               ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4815
>>> Error: 'super' is not allowed here
>>>             super.maxHorizontalScrollPosition =
>>>             ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4818
>>> Error: 'super' is not allowed here
>>>                 super.maxHorizontalScrollPosition;
>>>                 ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:7770
>>> Warning: Assignment within conditional.  Did you mean == instead of =?
>>>                               if (rowIndicators && (columnIndicator = rowIndicators[columnIndex.toString()]))
>>>                                                     ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:3971
>>> Warning: variable definition duplicates function parameter: height.
>>>         var height:Number = Math.min(height,
>>>             ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:7945
>>> Warning: variable definition duplicates function parameter: event.
>>>             var event:AdvancedDataGridEvent =
>>>                 ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:988
>>> Warning: variable definition duplicates function parameter: height.
>>>         var height:Number = Math.min(height,
>>>             ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
>>> Error: Incorrect number of arguments.  Expected no more than 1
>>>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>>>                         ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
>>> Error: Implicit coercion of a value of type IOLAPAxisPosition to an unrelated type Function.
>>>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>>>                                       ^
>>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as:6081
>>> Warning: variable definition duplicates function parameter: index.
>>>                 var index:int = bookmark.getViewIndex();
>>>                     ^
>>
>> --
>> This message is automatically generated by JIRA.
>> If you think it was sent incorrectly, please contact your JIRA administrators
>> For more information on JIRA, see: http://www.atlassian.com/software/jira
>
>
>
> --
> Ix Multimedia Software
>
> Jan Luykenstraat 27
> 3521 VB Utrecht
>
> T. 06-51952295
> I. www.ixsoftware.nl



-- 
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl

Re: [jira] [Resolved] (FLEX-33301) Falcon can't compile advancedgrids

Posted by Erik de Bruin <er...@ixsoftware.nl>.
Cyrill,

How did you get this to work? I'm currently trying to run all SWCs
through Falcon, but 'advancedgrids' gives me 2 errors and 3
warnings...

EdB



On Thu, Sep 12, 2013 at 12:23 PM, Cyrill Zadra (JIRA) <ji...@apache.org> wrote:
>
>      [ https://issues.apache.org/jira/browse/FLEX-33301?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> Cyrill Zadra resolved FLEX-33301.
> ---------------------------------
>
>     Resolution: Fixed
>
>> Falcon can't compile advancedgrids
>> ----------------------------------
>>
>>                 Key: FLEX-33301
>>                 URL: https://issues.apache.org/jira/browse/FLEX-33301
>>             Project: Apache Flex
>>          Issue Type: Bug
>>          Components: Falcon
>>    Affects Versions: Apache Falcon 1.0
>>            Reporter: Chema Balsas
>>            Assignee: Cyrill Zadra
>>              Labels: Falcon
>>             Fix For: Apache Falcon 1.0
>>
>>
>> Falcon fails to compile the advancedgrids project in test advancedgridsSWC.
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4734
>> Warning: Metadata was not bound to a definition
>>                                                                               [cellColumn];
>>                                                                               ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4815
>> Error: 'super' is not allowed here
>>             super.maxHorizontalScrollPosition =
>>             ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:4818
>> Error: 'super' is not allowed here
>>                 super.maxHorizontalScrollPosition;
>>                 ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as:7770
>> Warning: Assignment within conditional.  Did you mean == instead of =?
>>                               if (rowIndicators && (columnIndicator = rowIndicators[columnIndex.toString()]))
>>                                                     ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:3971
>> Warning: variable definition duplicates function parameter: height.
>>         var height:Number = Math.min(height,
>>             ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as:7945
>> Warning: variable definition duplicates function parameter: event.
>>             var event:AdvancedDataGridEvent =
>>                 ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:988
>> Warning: variable definition duplicates function parameter: height.
>>         var height:Number = Math.min(height,
>>             ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
>> Error: Incorrect number of arguments.  Expected no more than 1
>>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>>                         ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/OLAPDataGrid.as:1069
>> Error: Implicit coercion of a value of type IOLAPAxisPosition to an unrelated type Function.
>>             newStyles = styleFunction(rowPosn, colPosn, cellValue);
>>                                       ^
>> /Users/jbalsas/Documents/dev/apache/flex/sdk/branches/develop/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as:6081
>> Warning: variable definition duplicates function parameter: index.
>>                 var index:int = bookmark.getViewIndex();
>>                     ^
>
> --
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA administrators
> For more information on JIRA, see: http://www.atlassian.com/software/jira



-- 
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl