예제 #1
0
파일: runner.py 프로젝트: ieure/pypy
 def callmeth(selfbox, argboxes):
     selfobj = selfbox.getref(SELFTYPE)
     meth = getattr(selfobj, methname)
     methargs = getargs(argboxes)
     res = llimpl.call_maybe_on_top_of_llinterp(meth, methargs)
     if RESULT is not ootype.Void:
         return boxresult(RESULT, res)
예제 #2
0
파일: runner.py 프로젝트: purepython/pypy
 def callmeth(selfbox, argboxes):
     selfobj = selfbox.getref(SELFTYPE)
     meth = getattr(selfobj, methname)
     methargs = getargs(argboxes)
     res = llimpl.call_maybe_on_top_of_llinterp(meth, methargs)
     if RESULT is not ootype.Void:
         return boxresult(RESULT, res)
예제 #3
0
파일: runner.py 프로젝트: ieure/pypy
 def callfunc(funcbox, argboxes):
     funcobj = funcbox.getref(FUNC)
     funcargs = getargs(argboxes)
     res = llimpl.call_maybe_on_top_of_llinterp(funcobj, funcargs)
     if RESULT is not ootype.Void:
         return boxresult(RESULT, res)
예제 #4
0
파일: runner.py 프로젝트: purepython/pypy
 def callfunc(funcbox, argboxes):
     funcobj = funcbox.getref(FUNC)
     funcargs = getargs(argboxes)
     res = llimpl.call_maybe_on_top_of_llinterp(funcobj, funcargs)
     if RESULT is not ootype.Void:
         return boxresult(RESULT, res)