Gets the expression being compared. For example, foo in the following example.
case foo
when 0
puts 'zero'
when 1
puts 'one'
end
In the following example, the result is an implicit synthesized true literal.
case
when a then 0
when b then 1
else 2
end