Class: SuperDiff::ObjectInspection::Nodes::OnlyWhen

Inherits:
Base
  • Object
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_nameObject



9
10
11
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 9

def self.method_name
  :only_when
end

.node_nameObject



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



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 28

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
23
24
25
26
# File 'lib/super_diff/object_inspection/nodes/only_when.rb', line 20

def render_to_string(object)
  if test_passes?
    render_to_string_in_subtree(object)
  else
    ""
  end
end