Files
Notare/lib/ezdoc/nodes/table_row.rb

19 lines
253 B
Ruby

# frozen_string_literal: true
module Ezdoc
module Nodes
class TableRow < Base
attr_reader :cells
def initialize
super
@cells = []
end
def add_cell(cell)
@cells << cell
end
end
end
end