org.jruby.RubyClass.shouldCallMethodMissing()方法的使用及代码示例

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

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

RubyClass.shouldCallMethodMissing介绍

暂无

代码示例

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
             Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, block);
  }
  return method.call(context, self, this, name, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
               IRubyObject arg, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg, block);
  }
  return method.call(context, self, this, name, arg, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
             IRubyObject[] args) {
  assert args != null;
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, args, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, args);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
              IRubyObject arg0, IRubyObject arg1, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg0, arg1, block);
  }
  return method.call(context, self, this, name, arg0, arg1, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
             IRubyObject arg) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
             IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg0, arg1, arg2, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg0, arg1, arg2);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
    IRubyObject[] args) {
  assert args != null;
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, args, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, args);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
               IRubyObject[] args, Block block) {
  assert args != null;
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, args, block);
  }
  return method.call(context, self, this, name, args, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
               IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg0, arg1, arg2, block);
  }
  return method.call(context, self, this, name, arg0, arg1, arg2, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
             IRubyObject arg0, IRubyObject arg1) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg0, arg1, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg0, arg1);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
    IRubyObject arg) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
    IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg0, arg1, arg2, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg0, arg1, arg2);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
              IRubyObject arg, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg, block);
  }
  return method.call(context, self, this, name, arg, block);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
              IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg0, arg1, arg2, block);
  }
  return method.call(context, self, this, name, arg0, arg1, arg2, block);
}

代码示例来源:origin: org.jruby/jruby-complete

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
               IRubyObject arg0, IRubyObject arg1, Block block) { // NOT USED?
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg0, arg1, block);
  }
  return method.call(context, self, this, name, arg0, arg1, block);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name,
    IRubyObject arg0, IRubyObject arg1) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, arg0, arg1, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name, arg0, arg1);
}

代码示例来源:origin: org.jruby/jruby-core

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name,
               IRubyObject arg, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, arg, block);
  }
  return method.call(context, self, this, name, arg, block);
}

代码示例来源:origin: org.jruby/jruby-core

/**
 * Same behavior as finvoke, but uses the given caller object to check visibility if callType demands it.
 */
public IRubyObject invokeFrom(ThreadContext context, CallType callType, IRubyObject caller, IRubyObject self, String name) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method, name, caller, callType)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, callType, Block.NULL_BLOCK);
  }
  return method.call(context, self, this, name);
}

代码示例来源:origin: org.jruby/jruby-complete

public IRubyObject finvoke(ThreadContext context, IRubyObject self, String name, Block block) {
  DynamicMethod method = searchMethod(name);
  if (shouldCallMethodMissing(method)) {
    return Helpers.callMethodMissing(context, self, this, method.getVisibility(), name, CallType.FUNCTIONAL, block);
  }
  return method.call(context, self, this, name, block);
}

相关文章

微信公众号

最新文章

更多

RubyClass类方法