shard-ameba/src/ameba/source.cr

11 lines
184 B
Crystal
Raw Normal View History

2017-10-26 17:47:42 +00:00
module Ameba
class Source
getter lines : Array(String)
getter errors = [] of String
def initialize(content : String)
@lines = content.split "\n"
end
end
end