class AdLint::CodeStructure
DESCRIPTION¶ ↑
Base class of code structure information.
Public Instance Methods
print_as_csv(io)
click to toggle source
# File lib/adlint/code.rb, line 37 def print_as_csv(io) io.puts(to_csv) end
to_s()
click to toggle source
Private Instance Methods
to_a()
click to toggle source
to_csv()
click to toggle source
# File lib/adlint/code.rb, line 63 def to_csv to_a.map { |obj| obj ? obj.to_s.to_default_external : nil }.to_csv end