My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 150: Mixed array types
1 person starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  gameh...@gmail.com
Closed:  Feb 2012


 
Project Member Reported by gameh...@gmail.com, Oct 30, 2011
Array is unified to Array<Int>

class Test {

   public static function main()
   {
      var properties:Dynamic = { x: 100 };
      trace([ properties,1 ]);

      var d = new Array<Dynamic>();
      d.push(properties);
      d.push(1);
      trace(d);
   }
	
}
Feb 8, 2012
Project Member #1 gameh...@gmail.com
This one is a haxe compiler issue, and I believe Nicolas has addressed it.
Status: Fixed

Powered by Google Project Hosting