Whoops, the frameworkSWC() compilation test doesn't pass. There are still four
warnings:
D:\Apache\incubator\flex\sdk\branches\develop\frameworks\projects\framework\src\mx\collections\ListCollectionView.as:1398
Warning: variable definition duplicates function parameter: events.
var events:Array =
updatedItems[j].events;
^
D:\Apache\incubator\flex\sdk\branches\develop\frameworks\projects\framework\src\mx\utils\SHA256.as:111
Warning: Initializer value 3144134277 for type 'int' must be between
-2147483648 and 2147483647 inclusive. An initial value of -1150833019 will be
used instead.
var h1:int = 0xbb67ae85;
^
D:\Apache\incubator\flex\sdk\branches\develop\frameworks\projects\framework\src\mx\utils\SHA256.as:113
Warning: Initializer value 2773480762 for type 'int' must be between
-2147483648 and 2147483647 inclusive. An initial value of -1521486534 will be
used instead.
var h3:int = 0xa54ff53a;
^
D:\Apache\incubator\flex\sdk\branches\develop\frameworks\projects\framework\src\mx\utils\SHA256.as:115
Warning: Initializer value 2600822924 for type 'int' must be between
-2147483648 and 2147483647 inclusive. An initial value of -1694144372 will be
used instead.
var h5:int = 0x9b05688c;
^
These are examples of Falcon being pickier (and more correct) than the old
compiler.
Any volunteers to fix the source code so that this test passes?
- Gordon
-----Original Message-----
From: Gordon Smith [mailto:[email protected]]
Sent: Friday, November 30, 2012 1:10 PM
To: [email protected]
Subject: Falcon SDKSWCTests
@Cyril: Thanks for your help with introducing the compile-config.xml files so
that we can more easily make Falcon JUnit tests that compile each SDK SWC.
Now that we have one such test - for compiling framework.swc - passing, would
anybody like to work on investigating the status of other tests that compile
rpc.swc, mx.swc, spark.swc, etc.? We need to figure out whether the SDK source
code needs to change because Falcon is pickier than the old compiler, or
whether Falcon has AS bugs that need to be fixed.
- Gordon