org.jruby.Ruby.newNameErrorObject()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中org.jruby.Ruby.newNameErrorObject方法的一些代码示例,展示了Ruby.newNameErrorObject的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ruby.newNameErrorObject方法的具体详情如下:
包路径:org.jruby.Ruby
类名称:Ruby
方法名:newNameErrorObject

Ruby.newNameErrorObject介绍

暂无

代码示例

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

@Override
  public RaiseException uncaughtThrow(Ruby runtime, String message, IRubyObject tag) {
    return runtime.newNameErrorObject(message, tag);
  }
};

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

@Override
  public RaiseException uncaughtThrow(Ruby runtime, String message, IRubyObject tag) {
    return runtime.newNameErrorObject(message, tag);
  }
};

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

/**
 * Base implementation of Module#const_missing, throws NameError for specific missing constant.
 * 
 * @param rubyName The constant name which was found to be missing
 * @return Nothing! Absolutely nothing! (though subclasses might choose to return something)
 */
@JRubyMethod(name = "const_missing", required = 1)
public IRubyObject const_missing(ThreadContext context, IRubyObject rubyName, Block block) {
  Ruby runtime = context.runtime;
  String name;
  
  if (this != runtime.getObject()) {
    name = getName() + "::" + rubyName.asJavaString();
  } else {
    name = rubyName.asJavaString();
  }
  throw runtime.newNameErrorObject("uninitialized constant " + name, runtime.newSymbol(name));
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/**
 * Base implementation of Module#const_missing, throws NameError for specific missing constant.
 * 
 * @param rubyName The constant name which was found to be missing
 * @return Nothing! Absolutely nothing! (though subclasses might choose to return something)
 */
@JRubyMethod(name = "const_missing", required = 1)
public IRubyObject const_missing(ThreadContext context, IRubyObject rubyName, Block block) {
  Ruby runtime = context.runtime;
  String name;
  
  if (this != runtime.getObject()) {
    name = getName() + "::" + rubyName.asJavaString();
  } else {
    name = rubyName.asJavaString();
  }
  throw runtime.newNameErrorObject("uninitialized constant " + name, runtime.newSymbol(name));
}

相关文章

Ruby类方法