You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2019/05/17 04:06:50 UTC

[GitHub] [royale-asjs] aharui commented on issue #419: model_internal functions generation error

aharui commented on issue #419: model_internal functions generation error
URL: https://github.com/apache/royale-asjs/issues/419#issuecomment-493311992
 
 
   In your test case, the source code reads:
   
   		model_internal function initialize() : void
   		{
   			model_internal::propagateEvents;
   			model_internal::propagateEvents;
   		}
   
   I don't understand what you expect to happen when just naming a method instead of calling it.
   
   If I change the code to a proper call:
   
   		model_internal function initialize() : void
   		{
   			model_internal::propagateEvents(null);
   			model_internal::propagateEvents(null);
   		}
   
   The output looks correct to me.  I suppose we should fix that someday, but probably after I get some other stuff done.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services