class IcAgent::Ast::Nodes::Service

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

Public Instance Methods

title() click to toggle source

The title of the IC service node.

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

Converts the IC service node to a string representation.

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