Top Level Namespace

Defined Under Namespace

Modules: IRB, RubyToken Classes: Object, RubyLex, XMP

Instance Method Summary collapse

Instance Method Details

#default_src_encodingObject

DO NOT WRITE ANY MAGIC COMMENT HERE.



2
3
4
# File 'lib/irb/src_encoding.rb', line 2

def default_src_encoding
  return __ENCODING__
end

#xmp(exps, bind = nil) ⇒ Object



92
93
94
95
96
97
# File 'lib/irb/xmp.rb', line 92

def xmp(exps, bind = nil)
  bind = IRB::Frame.top(1) unless bind
  xmp = XMP.new(bind)
  xmp.puts exps
  xmp
end