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
We should layer statements in each block so that we can accumulate state without breaking scope and still catch exceptions. This will unify var x = foo() statements with the rest of the tests.
var x =foo()
test2()
...turns into...
try:
var x =foo()
try:
test2()
except: ...finally: ...except: ...finally: ...
The text was updated successfully, but these errors were encountered:
We should layer statements in each block so that we can accumulate state without breaking scope and still catch exceptions. This will unify
var x = foo()
statements with the rest of the tests....turns into...
The text was updated successfully, but these errors were encountered: