19 lines
249 B
Ruby
19 lines
249 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Notare
|
|
module Nodes
|
|
class TableCell < Base
|
|
attr_reader :runs
|
|
|
|
def initialize
|
|
super
|
|
@runs = []
|
|
end
|
|
|
|
def add_run(run)
|
|
@runs << run
|
|
end
|
|
end
|
|
end
|
|
end
|