class YARD::Parser::Ruby::AstNode
def full_source
-
(String)
- the full source that the node was parsed from
def full_source return parent.full_source if parent return @full_source if @full_source return IO.read(@file) if file && File.exist?(file) end