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
The following code returns the symbols of the concrete classes of a node, but does not include the parent classes:
(l/run* [?type] (l/fresh [?node] (reification/ast ?type ?node)))
As a result we are missing solutions, eg:
(l/run* [?type] (l/fresh [?node] (reification/ast :ASTNode ?node)))
This leads to problems when you write the following code:
(l/run* [?type] (l/fresh [?a-node ?another-node] (reification/ast ?type ?a-node) (reification/ast ?type ?another-node)))
It is missing solutions, eg:
(l/run* [?type] (l/fresh [?a-node ?another-node] (reification/ast :ASTNode ?a-node) (reification/ast :ASTNode ?another-node)))
The text was updated successfully, but these errors were encountered:
cderoove
No branches or pull requests
The following code returns the symbols of the concrete classes of a node, but does not include the parent classes:
As a result we are missing solutions, eg:
This leads to problems when you write the following code:
It is missing solutions, eg:
The text was updated successfully, but these errors were encountered: