class IcAgent::Ast::Nodes::StatementContent

Represents the content of a statement node in the abstract syntax tree, a subclass of StatementNode.

Public Instance Methods

title() click to toggle source

The title of the statement content node.

# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 275
def title
  :statement_content
end
to_s() click to toggle source

Converts the statement content node to a string representation.

# File lib/ic_agent/ast/nodes/statement_nodes.rb, line 280
def to_s
  elements_to_s
end