类 Object

常量

RubyLex

公共实例方法

xmp(exps, bind = nil) 点击切换源代码

一个便捷方法,仅当您 require 了 IRB::XMP 标准库时可用。

创建一个新的 XMP 对象,使用给定的表达式作为 exps 参数,并可选地使用绑定作为 bind 或使用顶层绑定。然后使用 :XMP 提示模式评估给定的表达式。

例如

require 'irb/xmp'
ctx = binding
xmp 'foo = "bar"', ctx
#=> foo = "bar"
  #==>"bar"
ctx.eval 'foo'
#=> "bar"

有关更多信息,请参阅 XMP.new

# File irb/xmp.rb, line 159
def xmp(exps, bind = nil)
  bind = IRB::Frame.top(1) unless bind
  xmp = XMP.new(bind)
  xmp.puts exps
  xmp
end