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
Implement ReQL AST printing. It is fairly easy.
Base code (taken from Avarel/Kaiper:Kaiper-AST/xyz.avarel.kaiper.ast.Expr, Apache-2.0 License)
public void ast(StringBuilder builder, String indent, boolean isTail) { builder.append(indent).append(isTail ? "└── " : "├── ").append(toString()); } public void ast(String label, StringBuilder builder, String indent, boolean tail) { builder.append(indent).append(tail ? "└── " : "├── ").append(label).append(':'); builder.append('\n'); ast(builder, indent + (tail ? " " : "│ "), true); }
The text was updated successfully, but these errors were encountered:
Implemented in develop/experimental (#7)
develop/experimental
Sorry, something went wrong.
NotJustAnna
Successfully merging a pull request may close this issue.
This issue is a continuation of rethinkdb/rethinkdb#5012
Implement ReQL AST printing. It is fairly easy.
Base code (taken from Avarel/Kaiper:Kaiper-AST/xyz.avarel.kaiper.ast.Expr, Apache-2.0 License)
The text was updated successfully, but these errors were encountered: