# frozen_string_literal: true module Ezdoc module Nodes class TableCell < Base attr_reader :runs def initialize super @runs = [] end def add_run(run) @runs << run end end end end