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
I use the latest akamai 2.0 script to execute this program
while (nodes.length !== 0) { const node = nodes.shift() if (node.type === 'ReturnStatement') { entry = node continue } try { vm.runInContext(generate(node).code, ctx) } catch (e) { console.log('e:', e) nodes.push(node) } }
In this code, When a catch error occurs, while will enter a deadlock because nodes. push (node) has been executed
nodes. push (node)
The text was updated successfully, but these errors were encountered:
As I don't update this repo every time they switch their script, you'll have to fix and adapt it yourself.
Sorry, something went wrong.
No branches or pull requests
I use the latest akamai 2.0 script to execute this program
while (nodes.length !== 0) { const node = nodes.shift() if (node.type === 'ReturnStatement') { entry = node continue } try { vm.runInContext(generate(node).code, ctx) } catch (e) { console.log('e:', e) nodes.push(node) } }
In this code, When a catch error occurs, while will enter a deadlock because
nodes. push (node)
has been executedThe text was updated successfully, but these errors were encountered: