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
Sometimes, a block is optional (eg: the finally block in a try statement). Currently, the set method doesn't know how to handle each case appropriately.
// This *should* work, but it doesn't.node.set('finalizer','console.log("test")')// In this case, there's a workaround.node.after(`finally { console.log("test")}`)
The text was updated successfully, but these errors were encountered:
Sometimes, a block is optional (eg: the
finally
block in a try statement). Currently, theset
method doesn't know how to handle each case appropriately.The text was updated successfully, but these errors were encountered: