You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Think of the running process of the following example derived from the design of IfOp, where the global block has two sub-blocks, one as the left branch of an IfElseOp, the other as the right branch.
During the execution of above program, we want error as long as a line just executed refers to an undefined variable. For example, if we remove z = mul(x1, x2)) from above example, the execution of b.set_output(0, z) must report an error about "undefined variable z".
The text was updated successfully, but these errors were encountered:
This discussion is related to #3708.
Think of the running process of the following example derived from the design of IfOp, where the global block has two sub-blocks, one as the left branch of an IfElseOp, the other as the right branch.
During the execution of above program, we want error as long as a line just executed refers to an undefined variable. For example, if we remove
z = mul(x1, x2))
from above example, the execution ofb.set_output(0, z)
must report an error about "undefined variable z".The text was updated successfully, but these errors were encountered: