Class: SuperDiff::Core::InspectionTreeNodes::AsSingleLine
- Inherits:
-
Base
- Object
- Base
- SuperDiff::Core::InspectionTreeNodes::AsSingleLine
show all
- Defined in:
- lib/super_diff/core/inspection_tree_nodes/as_single_line.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#clone_with, #initialize, #pretty_print, #render
Class Method Details
.method_name ⇒ Object
11
12
13
|
# File 'lib/super_diff/core/inspection_tree_nodes/as_single_line.rb', line 11
def self.method_name
:as_single_line
end
|
.node_name ⇒ Object
7
8
9
|
# File 'lib/super_diff/core/inspection_tree_nodes/as_single_line.rb', line 7
def self.node_name
:as_single_line
end
|
Instance Method Details
#render_to_lines(object, type:, indentation_level:) ⇒ Object
19
20
21
22
23
24
25
26
27
|
# File 'lib/super_diff/core/inspection_tree_nodes/as_single_line.rb', line 19
def render_to_lines(object, type:, indentation_level:)
[
Line.new(
type: type,
indentation_level: indentation_level,
value: render_to_string(object)
)
]
end
|
#render_to_string(object) ⇒ Object
15
16
17
|
# File 'lib/super_diff/core/inspection_tree_nodes/as_single_line.rb', line 15
def render_to_string(object)
block ? render_to_string_in_subtree(object) : immediate_value.to_s
end
|