class IcAgent::Ast::Nodes::BaseTypeKey

Represents a key base type node in the abstract syntax tree, a subclass of BaseType.

Public Instance Methods

title() click to toggle source

The title of the key base type node.

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

Converts the key base type node to a string representation.

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