We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Calling gohan_sleep(param) from a JS extension returns immediately (without an error and without sleeping) when param is a compound expression.
Examples:
gohan_sleep(2*1000); // expecting a sleep of 2 sec var sleepTime = 1000; gohan_sleep(2*sleepTime); var sleepTime = 1000*2; gohan_sleep(sleepTime);
Actual result: In every example, the call returns immediately, no error is reported
Expected result: Call will sleep for 2 seconds.
Works as expected:
gohan_sleep(2000); var sleepTime = 2000; gohan_sleep(sleepTime);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Calling gohan_sleep(param) from a JS extension returns immediately (without an error and without sleeping) when param is a compound expression.
Examples:
Actual result:
In every example, the call returns immediately, no error is reported
Expected result:
Call will sleep for 2 seconds.
Works as expected:
The text was updated successfully, but these errors were encountered: