Changes between Version 1 and Version 2 of Deprecation

Show
Ignore:
Timestamp:
03/19/09 13:39:09 (13 years ago)
Author:
coke
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Deprecation

    v1 v2  
    1 Following the 1.0 release, any items listed for deprecation will be listed here along with an explanation of the expected upgrade path. 
     1Any items listed for deprecation will be listed here along with an explanation of the expected upgrade path. 
    22 
    33This is separate from DEPRECATED.pod because it will contain (or link to) historical deprecations so users coming from older versions can upgrade. No official support is provided for these upgrades, this is best effort on the part of the parrot team only. 
     4 
     5---- 
     6{{{.HLL_map 'foo' = 'bar'}}} (removed in 1.1) 
     7  
     8This pir directive didn't always work at compile time when it was run. 
     9 
     10Replace this usage with a something like: 
     11 
     12{{{ 
     13.sub '' :anon :immediate 
     14  $P1 = getinterp 
     15  $P2 = get_class 'foo' 
     16  $P3 = get_class 'bar' 
     17  $P1.'hll_map'($P2, $P3) 
     18.end 
     19}}}