class YARD::Docstring

def line

Returns:
  • (nil) - if there is no associated {#line_range}
  • (Fixnum) - the first line of the {#line_range}
def line
  line_range ? line_range.first : nil
end