[ruby/prism] Update templates/include/prism/ast.h.erb

https://github.com/ruby/prism/commit/7f7620b6d5
This commit is contained in:
Kevin Newton 2024-08-22 09:31:19 -04:00 коммит произвёл git
Родитель 0ef703b91c
Коммит 3f30c4df8c
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -151,12 +151,14 @@ typedef struct pm_node {
<%- nodes.each do |node| -%>
/**
* <%= node.name %>
*
<%- node.each_comment_line do |line| -%>
*<%= line %>
<%- end -%>
* <%= node.name %> (type: <%= node.type %>)
<%- if (node_flags = node.flags) -%>
*
* Type: <%= node.type %>
<%- if (node_flags = node.flags) -%>
* Flags:
<%- node_flags.values.each do |value| -%>
* PM_<%= node_flags.human.upcase %>_<%= value.name %>