class IcAgent::Ast::Nodes::IcTypeName

Represents an IC type name node in the abstract syntax tree, a subclass of StatementNode.

Public Instance Methods

title() click to toggle source

The title of the IC type name node.

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

Converts the IC type name node to a string representation.

# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 254
def to_s
  elements_to_s
end