Changes between Version 3 and Version 4 of ParrotDeprecationsFor2.9

Show
Ignore:
Timestamp:
08/14/10 06:49:02 (11 years ago)
Author:
cotto
Comment:

add find_global_s and store_global_s

Legend:

Unmodified
Added
Removed
Modified
  • ParrotDeprecationsFor2.9

    v3 v4  
    2222 
    2323See r42129 for more examples. 
     24 
     25== Remove Parrot_find_global_s and Parrot_store_global_s == 
     26 
     27=== Description === 
     28 
     29Parrot_find_global_s and Parrot_store_global_s were removed after they were found to be unused. 
     30 
     31=== Rationale === 
     32 
     33Nothing in Parrot used them and they were therefore untested. 
     34 
     35=== Replacement === 
     36 
     37Use the body of one of the old functions in place of its call. 
     38 
     39{{{ 
     40   /* old code */ 
     41   XXX: insert code here 
     42    
     43   /* updated code */ 
     44   XXX: insert code here 
     45 
     46}}} 
     47 
     48See r48435 (src/namespace.c changes) for an example of what to replace calls to these functions with. 
     49See r42129 for more example