class IcAgent::Ast::Nodes::TypeName

Represents a type name node in the abstract syntax tree, a subclass of NamedNode.

Public Instance Methods

title() click to toggle source

The title of the type name node.

# File lib/ic_agent/ast/nodes/named_nodes.rb, line 317
def title
  :type_name
end
to_s() click to toggle source

Converts the type name node to a string representation.

# File lib/ic_agent/ast/nodes/named_nodes.rb, line 322
def to_s
  elements_to_s
end