コード例 #1
0
ファイル: CallBase.java プロジェクト: thedarkone/jruby
  public boolean canBeEval() {
    if (!flagsComputed) computeFlags();

    return canBeEval;
  }
コード例 #2
0
ファイル: CallBase.java プロジェクト: thedarkone/jruby
  public boolean targetRequiresCallersBinding() {
    if (!flagsComputed) computeFlags();

    return targetRequiresCallersBinding;
  }
コード例 #3
0
ファイル: CallBase.java プロジェクト: erippetoe/jruby
  public boolean targetRequiresCallersFrame() {
    if (!flagsComputed) computeFlags();

    return targetRequiresCallersFrame;
  }