class IcAgent::Ast::Nodes::Instruction

Represents an instruction node in the abstract syntax tree, a subclass of NamedNode.

Public Instance Methods

title() click to toggle source

The title of the instruction node.

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

Converts the instruction node to a string representation.

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