class IcAgent::Ast::Nodes::BaseTypeOther

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

Public Instance Methods

opt_code() click to toggle source

Returns the opt code for the other base type.

# File lib/ic_agent/ast/nodes/named_nodes.rb, line 283
def opt_code
  text_value
end
title() click to toggle source

The title of the other base type node.

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

Converts the other base type node to a string representation.

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