class YARD::Parser::Ruby::AstNode

def inspect

Returns:
  • (String) - inspects the object
def inspect
  typeinfo = type && type != :list ? ':' + type.to_s + ', ' : ''
  's(' + typeinfo + map(&:inspect).join(", ") + ')'
end