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
Procedure proc1 modifies x and proc2 uses x. The following results in proc2 using the value of x from the previous step (as expected).
proc1
x
proc2
module m { ... next { call () = proc1(); call () = proc2(); } ... }
The following results in proc2 using the new value of x.
module main { instance m1 : m (); ... next { call () = m1.proc1(); call () = m1.proc2(); } ... }
See file test/test-instance-procedure-calls-1.ucl.
test/test-instance-procedure-calls-1.ucl
The text was updated successfully, but these errors were encountered:
Fixed by this: #238
Sorry, something went wrong.
adwait
No branches or pull requests
Procedure
proc1
modifiesx
andproc2
usesx
.The following results in
proc2
using the value ofx
from the previous step (as expected).The following results in
proc2
using the new value ofx
.See file
test/test-instance-procedure-calls-1.ucl
.The text was updated successfully, but these errors were encountered: