class IcAgent::Ast::Nodes::IcServiceParam
Represents an IC service param node in the abstract syntax tree, a subclass of NamedNode
.
Public Instance Methods
title()
click to toggle source
The title of the IC service param node.
# File lib/ic_agent/ast/nodes/named_nodes.rb, line 399 def title :ic_service_param end
to_s()
click to toggle source
Converts the IC service param node to a string representation with '#' prefix.
# File lib/ic_agent/ast/nodes/named_nodes.rb, line 404 def to_s "# #{elements[0].to_s}" end