1 =head1 Deprecated opcodes
7 Use the C<find_method> opcode instead.
9 TODO remove this para and DELETED_fetchmethod from ops.
13 =head1 .imc file extension
24 =head1 Deprecated APIs
30 All Parrot_char_is_* functions from src/string_primitives.c will
31 be removed. Please use Parrot_string_is_cclass() instead.
35 =head1 Deprecated methods
41 PGE::P6Regex is now a registered compiler, and should be used like so:
43 <@pmichaud> it's easy; instead of $P0 = find_global "PGE", "p6rule"
44 one now does $P0 = compreg "PGE::P6Regex"
46 This syntax is also true for PGE::Glob and PGE::P5Regex
52 Not yet deprecated, but it's recommended to use the new syntax and
53 gradually change the old.
59 ... will require a dot in front
61 $P0 = new Integer => $P0 = new .Integer
63 =item Assignment syntax with opcodes [#36283]
65 When the first argument of an opcode is C<OUT>, then the assignment syntax
66 will be allowed, as it is today.
68 In any other case (i.e. C<INOUT>, C<IN>), this will become
69 a syntax error. For example:
72 $P0 = substr 1, 2, "x"