class IcAgent::Ast::Nodes::IcServiceMethods

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

Public Instance Methods

title() click to toggle source

The title of the IC service methods node.

# File lib/ic_agent/ast/nodes/named_nodes.rb, line 356
def title
  :ic_service_methods
end
value() click to toggle source

Returns an array of IC service method nodes.

# File lib/ic_agent/ast/nodes/named_nodes.rb, line 361
def value
  elements.map { |update| update.value }
end