コード例 #1
0
ファイル: PGenerator.java プロジェクト: wdv4758h/ZipPy
 public Object send(Object value) throws StopIterationException {
   PArguments.setSpecialArgument(arguments, value);
   return callTarget.call(arguments);
 }
コード例 #2
0
ファイル: PGenerator.java プロジェクト: wdv4758h/ZipPy
 @Override
 public Object __next__() throws StopIterationException {
   return callTarget.call(arguments);
 }