9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# File 'lib/super_diff/object_inspection/inspection_tree_builders/default_object.rb', line 9
def call
empty = -> { object.instance_variables.empty? }
nonempty = -> { !object.instance_variables.empty? }
InspectionTree.new do
only_when empty do
as_lines_when_rendering_to_lines do
add_text do |object|
"#<#{object.class.name}:" +
SuperDiff::Helpers.object_address_for(object) + ">"
end
end
end
only_when nonempty do
as_lines_when_rendering_to_lines(collection_bookend: :open) do
add_text do |object|
"#<#{object.class.name}:" +
SuperDiff::Helpers.object_address_for(object)
end
when_rendering_to_lines { add_text " {" }
end
when_rendering_to_string { add_text " " }
nested do |object|
insert_separated_list(object.instance_variables.sort) do |name|
as_prefix_when_rendering_to_lines { add_text "#{name}=" }
add_inspection_of object.instance_variable_get(name)
end
end
as_lines_when_rendering_to_lines(collection_bookend: :close) do
when_rendering_to_lines { add_text "}" }
add_text ">"
end
end
end
end
|