Class: SuperDiff::ObjectInspection::Nodes::OnlyWhen
- Inherits:
-
Base
- Object
- Base
- SuperDiff::ObjectInspection::Nodes::OnlyWhen
show all
- Defined in:
- lib/super_diff/object_inspection/nodes/only_when.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#clone_with, #pretty_print, #render
Constructor Details
#initialize(tree, test, **options, &block) ⇒ OnlyWhen
Returns a new instance of OnlyWhen.
13
14
15
16
17
18
|
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 13
def initialize(tree, test, **options, &block)
@tree = tree
@test = test
@block = block
@options = options
end
|
Class Method Details
.method_name ⇒ Object
9
10
11
|
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 9
def self.method_name
:only_when
end
|
.node_name ⇒ Object
5
6
7
|
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 5
def self.node_name
:only_when
end
|
Instance Method Details
#render_to_lines(object, type:, indentation_level:) ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 24
def render_to_lines(object, type:, indentation_level:)
if test_passes?
render_to_lines_in_subtree(
object,
type: type,
indentation_level: indentation_level
)
else
[]
end
end
|
#render_to_string(object) ⇒ Object
20
21
22
|
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 20
def render_to_string(object)
test_passes? ? render_to_string_in_subtree(object) : ""
end
|