本文整理了Java中org.jruby.Ruby.newNameErrorObject
方法的一些代码示例,展示了Ruby.newNameErrorObject
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ruby.newNameErrorObject
方法的具体详情如下:
包路径:org.jruby.Ruby
类名称: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));
}
内容来源于网络,如有侵权,请联系作者删除!