Changes between Version 4 and Version 5 of ParrotDeprecationsFor2.9
- Timestamp:
- 08/19/10 14:16:58 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ParrotDeprecationsFor2.9
v4 v5 48 48 See r48435 (src/namespace.c changes) for an example of what to replace calls to these functions with. 49 49 See r42129 for more example 50 51 == Change behavior of find_lex opcode == 52 53 === Description === 54 55 The find_lex opcode no longer throws an exception when the lexical is not found; it returns PMCNULL instead. 56 57 --- Rationale === 58 59 This is consistent with the other "lookup" opcodes. 60 61 === Replacement === 62 63 If you want to throw an exception, you must check the result of the opcode and throw the exception explicitly.