class MarkdownExec::LinkState

def ==(other)

Returns:
  • (Boolean) - true if the objects are equal, false otherwise.

Parameters:
  • other (LinkState) -- the other LinkState object to compare with.
def ==(other)
  other.class == self.class &&
    other.block_name == block_name &&
    other.display_menu == display_menu &&
    other.document_filename == document_filename &&
    other.inherited_block_names == inherited_block_names &&
    other.inherited_dependencies == inherited_dependencies &&
    other.inherited_lines == inherited_lines &&
    other.prior_block_was_link == prior_block_was_link
end