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
var param:AType = null; scriptCall(?param); {use param}
to
scriptCall(?param:AType); {use param}
So the second form is short hand for the first one.
Note that a var or val script expression should be the direct non-leftmost operand of a sequential operator; the identifier is then defined more to the right of the declaration.
The text was updated successfully, but these errors were encountered:
It should be possible to shorten
to
So the second form is short hand for the first one.
Note that a var or val script expression should be the direct non-leftmost operand of a sequential operator; the identifier is then defined more to the right of the declaration.
The text was updated successfully, but these errors were encountered: