class YARD::Parser::Ruby::AstNode

def source

Returns:
  • (String) - the parse of {#full_source} that the node represents
def source
  return parent.full_source[source_range] if parent
  full_source
end