org.jruby.runtime.Block.setEvalType()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(114)

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

Block.setEvalType介绍

暂无

代码示例

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

private void yieldRefineBlock(ThreadContext context, RubyModule refinement, Block block) {
  block.setEvalType(EvalType.MODULE_EVAL);
  block.getBinding().setSelf(refinement);
  block.yieldSpecific(context);
}

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

private void yieldRefineBlock(ThreadContext context, RubyModule refinement, Block block) {
  block.setEvalType(EvalType.MODULE_EVAL);
  block.getBinding().setSelf(refinement);
  block.yieldSpecific(context);
}

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

@Interp @JIT
public static IRubyObject updateBlockState(Block block, IRubyObject self) {
  // SSS FIXME: Why is self null in non-binding-eval contexts?
  if (self == null || block.getEvalType() == EvalType.BINDING_EVAL) {
    // Update self to the binding's self
    self = useBindingSelf(block.getBinding());
  }
  // Clear block's eval type
  block.setEvalType(EvalType.NONE);
  // Return self in case it has been updated
  return self;
}

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

@Interp @JIT
public static IRubyObject updateBlockState(Block block, IRubyObject self) {
  // SSS FIXME: Why is self null in non-binding-eval contexts?
  if (self == null || block.getEvalType() == EvalType.BINDING_EVAL) {
    // Update self to the binding's self
    self = useBindingSelf(block.getBinding());
  }
  // Clear block's eval type
  block.setEvalType(EvalType.NONE);
  // Return self in case it has been updated
  return self;
}

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

public Block deepCloneBlockForEval(IRubyObject self, EvalType evalType) {
  Block block = cloneBlockAndBinding();
  block.getBinding().setSelf(self);
  block.getBinding().getFrame().setSelf(self);
  block.setEvalType(evalType);
  return block;
}

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

public Block cloneBlockForEval(IRubyObject self, EvalType evalType) {
  Block block = cloneBlock();
  block.getBinding().setSelf(self);
  block.getBinding().getFrame().setSelf(self);
  block.setEvalType(evalType);
  return block;
}

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

public Block cloneBlockForEval(IRubyObject self, EvalType evalType) {
  Block block = cloneBlock();
  block.getBinding().setSelf(self);
  block.getBinding().getFrame().setSelf(self);
  block.setEvalType(evalType);
  return block;
}

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

public Block deepCloneBlockForEval(IRubyObject self, EvalType evalType) {
  Block block = cloneBlockAndBinding();
  block.getBinding().setSelf(self);
  block.getBinding().getFrame().setSelf(self);
  block.setEvalType(evalType);
  return block;
}

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

block.setEvalType(EvalType.MODULE_EVAL);

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

block.setEvalType(EvalType.MODULE_EVAL);

相关文章