Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when passing function as param with this. in front #189

Open
peteshand opened this issue Sep 20, 2013 · 0 comments
Open

Error when passing function as param with this. in front #189

peteshand opened this issue Sep 20, 2013 · 0 comments

Comments

@peteshand
Copy link

Actionscript:

addCallback(this.Callback);

private function Callback():String
{
        return 'test123';
}

public function addCallback(callback:Function):void
{
        Window.console.log(callback());
}

Javascript:

this.addEventListener($createStaticDelegate(, this.Callback));
...

notice that '(,' should actually be '(this,'
changing

addCallback(this.Callback);

to

addCallback(Callback);

results in the correct output:

this.addEventListener($createStaticDelegate(this, this.Callback));

work around, simply don't add this. infront of function when passing them as params.
But would be nice if the compiler took care of this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant