19 lines
254 B
Ruby
19 lines
254 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Notare
|
|
module Nodes
|
|
class TableRow < Base
|
|
attr_reader :cells
|
|
|
|
def initialize
|
|
super
|
|
@cells = []
|
|
end
|
|
|
|
def add_cell(cell)
|
|
@cells << cell
|
|
end
|
|
end
|
|
end
|
|
end
|