class IcAgent::Ast::Nodes::IcBaseTypeVec
Represents an IC base type vector node in the abstract syntax tree, a subclass of StatementNode
.
Public Instance Methods
opt_code()
click to toggle source
Returns the opt code for the IC base type vector node, which is 'vec'.
# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 197 def opt_code 'vec' end
title()
click to toggle source
The title of the IC base type vector node.
# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 187 def title :base_type_vec end
to_s()
click to toggle source
Converts the IC base type vector node to a string representation.
# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 192 def to_s elements_to_s end