class IcAgent::Ast::Nodes::DIDFile

Represents a DID file node in the abstract syntax tree, a subclass of NamedNode.

Public Instance Methods

title() click to toggle source

The title of the DID file node.

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

Converts the DID file node to a string representation.

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