Changes between Version 7 and Version 8 of ParrotDeprecationsFor3.0

Show
Ignore:
Timestamp:
11/22/10 17:15:16 (11 years ago)
Author:
NotFound
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ParrotDeprecationsFor3.0

    v7 v8  
    139139 
    140140string_max_bytes and string_increment will be removed. 
     141 
     142 
     143== Method lower in String PMC == 
     144 
     145=== Description === 
     146 
     147The method lower in the String PMC has been removed. 
     148 
     149=== Rationale === 
     150 
     151HLLs may need its own version with different name and semantic, having a generic one is confusing. For other usages string registers are more convenient. 
     152 
     153=== Replacement === 
     154 
     155Use string registers and the downcase opcode. For HLLs, provide its own version in the HLL mapped String type.