inducer / islpy

Python wrapper for isl, an integer set library
http://pypi.python.org/pypi/islpy
73 stars 19 forks source link

Add ast_node_type.mark #126

Closed PSilvestre closed 9 months ago

PSilvestre commented 9 months ago

Is your feature request related to a problem? Please describe. The ast_node_type.mark is not present in the enum exposed to python. See here.

However, it is present in the C isl used by this package. See here

Describe the solution you'd like Add the node type to the enum.

Describe alternatives you've considered Comparing to every other node type to acertain that it can only be a mark may be an option, but not a very pleasant one.

Additional context Mark nodes are often important during AST manipulation.