class Prism::DotVisitor

def integer_base_flags_inspect(node)

comma-separated list.
Inspect a node that has integer_base_flags flags to display the flags as a
def integer_base_flags_inspect(node)
  flags = []
  flags << "binary" if node.binary?
  flags << "decimal" if node.decimal?
  flags << "octal" if node.octal?
  flags << "hexadecimal" if node.hexadecimal?
  flags.join(", ")
end