Changes between Version 3 and Version 4 of RewritingPMCsInNQP

Show
Ignore:
Timestamp:
06/26/09 07:23:25 (13 years ago)
Author:
cotto
Comment:

add some comments

Legend:

Unmodified
Added
Removed
Modified
  • RewritingPMCsInNQP

    v3 v4  
    2424 
    2525{{{ 
    26 # NOTE: This code may be plausible and it may be terrible. 
    27 #       It's late and I wanted to try writing some L1. 
    28 c_arg      INTERP 
    29 c_arg      key 
    30 c_return   nextkey 
    31 find_cfunc $P0, 'next_key' 
    32 call_cfunc $P0 
     26# NOTE: This code may be plausible and it may be terrible.  It's just an idea. 
     27#       Also, it's late and I wanted to try writing some L1. 
     28c_arg      INTERP            #set INTERP as the first arg to whatever function is called next 
     29c_arg      key               #set key to the second arg 
     30c_return   nextkey           #stick the return value into nextkey 
     31find_cfunc $P0, 'next_key'   #find the function or get it from a cache or something 
     32call_cfunc $P0               #call it! 
    3333}}} 
    3434