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
We do need some kind of
# if the node does not have a 'type', return if (!"type" %in% names(node)) { return() }
guard!
The text was updated successfully, but these errors were encountered:
The named check has to be guarded as well:
RFunctionCall = { if ('named' %in% names(node) && node$named) { visit_node(node$functionName, callback) } else { visit_node(node$calledFunction, callback) } visit_nodes(node$arguments, callback) },
Sorry, something went wrong.
No branches or pull requests
We do need some kind of
guard!
The text was updated successfully, but these errors were encountered: