| Class | XMP::StringInputMethod |
| In: |
lib/irb/xmp.rb
|
| Parent: | IRB::InputMethod |
# File lib/irb/xmp.rb, line 65
65: def gets
66: while l = @exps.shift
67: next if /^\s+$/ =~ l
68: l.concat "\n"
69: print @prompt, l
70: break
71: end
72: l
73: end