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