| | 24 | |
| | 25 | == Remove Parrot_find_global_s and Parrot_store_global_s == |
| | 26 | |
| | 27 | === Description === |
| | 28 | |
| | 29 | Parrot_find_global_s and Parrot_store_global_s were removed after they were found to be unused. |
| | 30 | |
| | 31 | === Rationale === |
| | 32 | |
| | 33 | Nothing in Parrot used them and they were therefore untested. |
| | 34 | |
| | 35 | === Replacement === |
| | 36 | |
| | 37 | Use 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 | |
| | 48 | See r48435 (src/namespace.c changes) for an example of what to replace calls to these functions with. |
| | 49 | See r42129 for more example |