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

Allow interchange of positions between Async and Method Modifier(s)? #6

Open
HallofFamer opened this issue Sep 10, 2018 · 1 comment

Comments

@HallofFamer
Copy link

It seems that with the current way aync macro is designed, the async keyword must be positioned before method modifiers. For instance, the below method definition will work:

async public function doTasks(){ } // it works

While it will not if you swap the positions:

public async function doTasks(){ } // it wont compile

I was wondering if it will be possible to allow interchangeable positions between async and method modifiers(ie. public, private). What do you think?

@HallofFamer
Copy link
Author

Nvm, seems that in latest version both syntax will work.

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