class IcAgent::Ast::Nodes::BaseTypeVec

Represents a vector 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 vector base type.

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

The title of the vector base type node.

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

Converts the vector base type node to a string representation.

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