Class: MetaCommit::Extension::MarkdownSupport::Diffs::CodeChange
- Inherits:
-
Diff
- Object
- Contracts::Diff
- Diff
- MetaCommit::Extension::MarkdownSupport::Diffs::CodeChange
- Defined in:
- lib/meta_commit_markdown_support/diffs/code_change.rb
Constant Summary
Constants inherited from Diff
Constants included from ContextualAstAccessor
ContextualAstAccessor::ELEMENT_TYPE_ANCHOR, ContextualAstAccessor::ELEMENT_TYPE_CODE, ContextualAstAccessor::ELEMENT_TYPE_HEADER, ContextualAstAccessor::ELEMENT_TYPE_IMAGE, ContextualAstAccessor::ELEMENT_TYPE_LISTS, ContextualAstAccessor::ELEMENT_TYPE_LIST_ITEM, ContextualAstAccessor::ELEMENT_TYPE_PARAGRAPH, ContextualAstAccessor::ELEMENT_TYPE_TEXT
Instance Method Summary collapse
Methods inherited from Diff
#inspect, #supports_parser?, #to_s, #type_addition?, #type_deletion?, #type_replace?
Methods included from ContextualAstAccessor
#anchor?, #anchor_context?, #anchor_target, #anchor_title, #closest_header_of_list, #code?, #code_context?, #code_first_line, #context_node_neighbours, #context_nodes_on_line, #contextual_ast_has_target_node, #element_closest_to, #elements_of_type_on_line, #header?, #header_content, #image?, #list?, #list_context?, #list_item?, #nested_list_context?, #paragraph?, #paragraph_context?, #parent_list_item_title, #starts_on_line?, #string_content, #text?, #text_context?
Instance Method Details
#string_representation ⇒ String
13 14 15 16 17 |
# File 'lib/meta_commit_markdown_support/diffs/code_change.rb', line 13 def string_representation first_line = code_first_line(change_context.new_contextual_ast) return "change #{first_line} code sample" unless first_line.empty? 'change code sample' end |
#supports_change(context) ⇒ Boolean
5 6 7 8 9 10 |
# File 'lib/meta_commit_markdown_support/diffs/code_change.rb', line 5 def supports_change(context) context.type == TYPE_REPLACE && contextual_ast_has_target_node(context.new_contextual_ast) && contextual_ast_has_target_node(context.old_contextual_ast) && (code_context?(context.old_contextual_ast) || code?(context.old_contextual_ast.target_node)) && (code_context?(context.new_contextual_ast) || code?(context.new_contextual_ast.target_node)) end |