Coding in ruby, BBE 15.1.1,
Strange behavior of the dropdown menu:
Copy the below code in a new file.
Check the dropdown menu, see the misalignements.
Remove the module lines = one misalignement gone
Remove the class lines = no more misalignement !
What gives ?
-------------------------------------------
module McQu
class McCa
def meth1
if n==1
puts 'uno'
end
end
def meth2
case n==2
when p==4
puts 'two-4'
end
end
def meth3
n==3
puts '33'
end
def meth4
if n==4
puts 'for'
end
end
end #class
end #modu