Hi Fabian, Great work! I'm glad I could help out with a bug report :)
Simon ----- Original Message ---- From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development <[email protected]> Sent: Monday, 26 March, 2007 7:00:12 PM Subject: Re: [qooxdoo-devel] Possible bug in make build? Hello Simon, with the help of your code I was able to reproduce and solve this problem. There was really a nasty bug in the variable optimizer. This is the reduced problem: function() { // this works this.foo.b(b); this.b(b); this.a().b // this doesn't this.a().b() var b = 1; } the first three lines are optimized correctly but the 'b' in the last line is replaced by the compressed variable name of the variable 'b'. this.a().$0(); var $0 = 1; We have fixed it in the trunk and in the legacy 0.6 branch now. If you want this fix you could update to legacy 0.6 in svn. Thanks for your bug report. Best Fabian ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel Send instant messages to your online friends http://au.messenger.yahoo.com ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
