Some kind of fix or workaround for phaylon's parameterized role bug in MXD.
[p5sagit/Devel-Declare.git] / Changes
CommitLineData
71511651 1Changes for Devel-Declare
2
5591a785 30.005011 - 14 Aug 2009
4 - Add tests for not interpreting various things as barewords when they
5 aren't.
6 - Depend on a Test::More with done_testing support.
7 - Don't invoke the const callback for a keyword followed by a fat comma.
8
d0405fd6 90.005010 - 11 Aug 2009
10 - Don't invoke the linestr callback if we found a keyword and the bufptr
11 still contains an arrow at its beginning. This causes the linestr callback
12 not to be fired on things like "->method" (if method is a declarator).
13 While this might be useful, it mostly caused problems so far. It might be
14 added again later as a separate feature.
15
fb4e2a38 160.005009 - 10 Aug 2009
17 - Stop mixing declarations with code. (Closes: RT#48548) (Cosimo Streppone)
18 - Move strip_attrs, which is a purely parsing method, from
19 MethodInstaller::Simple to Context::Simple (nperez).
20
0b258695 210.005008 - 27 Jul 2009
bf30f20d 22 - Depend on the latest ExtUtils::Depends for win32+gcc support.
7dd7d008 23 - Conditionally expand linestrings under perl debugger.
24
41db92e3 250.005007 - 13 Jul 2009
5bd46b12 26 - Fix line numbers not being updated from skipspace calls
27
41db92e3 280.005006 - 16 Jun 2009
9183b040 29 - Fix compilation on 5.8 perls.
30
41db92e3 310.005005 - 05 Jun 2009
33038bb0 32 - Improve compatibility with MAD-enabled perls
33 (Reini Urban, Closes RT#45779).
34
41db92e3 350.005004 - 03 Jun 2009
0f1dacbc 36 - Don't redefine MEM_WRAP_CHECK_ if it's already defined, getting rid of
37 compilation errors on some perls (Maik Fischer).
38
41db92e3 390.005003 - 24 May 2009
98820f7a 40 - Failing tests for line number issues (Ash Berlin).
41 - Add strip_names_and_args (Cory Watson).
42 - Various pod fixes (Yanick Champoux, Florian Ragwitz).
43 - Add copyright statements.
44
3f54dfa3 450.005002
46 - Don't invoke the linestr callback if the parser was expecting an operator.
47 This makes calling a method with the name of a declarator work.
48
36a3c106 490.005001
50 - Implement skip_declarator in terms of scan_word in Context::Simple.
51 This avoids relying on PL_tokenbuf to skip past the declarator, as
52 PL_tokenbuf might be overwritten by compiling other code between calling
53 the linestr callback and skip_declarator.
54
5b1cb7aa 550.005000
56 - Port the documentation from %^H and Scope::Guard to B::Hooks::EndOfScope.
57 - Fix extracting multi-line strings using scan_str.
58 - Remove the nasty workaround for the above from Context::Simple.
59
cc4c6362 600.004000
61 - Much improved documentation (osfameron).
62 - Make sure the linestr callback isn't invoked when a declarator is used as
63 part of some quoting construct like qq//, m//, s///, qr//, tr///, qx//, ``,
64 etc (Florian Ragwitz).
65 - Tests for this (osfameron, Florian Ragwitz).
66
cc4fa5e3 670.003005
68 - Depend on a recent B::Hooks::EndOfScope to make semicolon injection more
69 robust (Florian Ragwitz).
70 - Add a couple of TODO tests for better error reporting (Marcus Ramberg).
712c5dd1 71 - Context::Simple::inject_if_block now returns true if start of block was
cc4fa5e3 72 found (Ash Berlin).
712c5dd1 73
2c746743 740.003004
75 - Make magic work within string evals on 5.10 if the hints hash is used.
76 - Bind S_scan_ident to perl. It allows scanning for simple identifiers.
77 - Add strip_ident to Context::Simple.
78
7715fb8f 790.003003
80 - Devel::Declare::MethodInstaller::Simple now has code_for() which the
81 subclass can override to monkey with the magic shadowed subroutine.
82 This is handy if you want to employ Devel::BeginLift.
83
45333fcc 840.003002
85 - Depend on Sub::Name and B::Hooks::EndOfScope. MethodInstaller::Simple and
86 Context::Simple use them.
87
5ed603f1 880.003001
89 - Don't use :lvalue in Context::Simple and MethodInstaller::Simple to keep
90 the debugger happy.
371427af 91
5ed603f1 920.003000
371427af 93 - Add Devel::Declare::Context::Simple and
94 Devel::Declare::MethodInstaller::Simple as an experimental way to make
95 creating block- and sub-like keywords easier (Rhesa Rozendaal).
96
b1e909d3 970.002999_01
e6486283 98 - Use B::Hooks::OP::Check to register PL_check callbacks.
99 - Use B::Hooks::EndOfScope instead of %^H and Scope::Guard.
100 - Don't segfault if HvNAME(PL_curstash) == NULL.
101 - Don't segfault on 5.9.5+, where PL_parser is a symbol, not a define.
102 - Don't delete the previous symbol table entry when shadowing subs. This
103 makes us work within the debugger.
104 - Don't mix declarations and code.
105
7347020e 1060.002002
e422fec0 107 - switch done_declare call from call_argv to call_pv.
108 - Make get_linestr{,_offset} return sensible values when called while the
109 parser isn't running.
110 - Remove several compile time warnings.
111 - Allow enabling of debug mode using $ENV{DD_DEBUG}.
001d53d0 112
82e5ff1c 1130.002001
96f12726 114 - clean up checks for whether we're lexing and whether lex_stuff exists
115 to handle the PL_parser factor-out in 5.10
5a96176c 116 - check if reallocation of PL_linestr is necessary before doing it. this way
117 we can bail out properly instead of corrupting memory in some cases
118 - don't call strlen twice on the same sting
119 - try to be more portable
120 - stop using Nullsv
121 - don't use Perl_* functions directly.
122 - don't define PERL_CORE
123 - use NEWSV from handy.h instead of defining our own
124 - don't define PERL_NO_GET_CONTEXT
125 - don't support preprocessors (perl -P)
96f12726 126
2ee34f20 1270.002000
128 - rewrite guts into perl, add tests for new declaration style
129
bedac9ff 1300.001011
131 - add support for 'method main' and other package names
132
9673d7ca 1330.001010
134 - fix traits code, again, so it compiles on 5.10.
135
1360.001009
d8e65fc8 137 - only mangle evals if o->op_ppaddr is actually PL_ppaddr[OP_ENTERVAL]
a9eb4da1 138 - don't set OPf_SPECIAL on entereval ops, mistaken cargo cult from autobox
f5262149 139 - fix traits code to work on older 5.8.x perls
140
1410.001008
142 - turns out 0.1.7 in Makefile.PL results in that version going into
143 the .xs file as well as the dist name. Then everything breaks.
144
1450.001007
146 - bail on SvGROW during declare process since that can't work
147 - use a source filter on files and an op wrap on evals to pre-grow
148 PL_linestr so we don't get to the point of needing to bail
149
498cc8bc 1500.001006
c5912dc7 151 - nasty goto &$func hack to avoid :lvalue+list context weirdness
152 - correct SvGROW invocation
498cc8bc 153
1540.001005
003ac394 155 - stop using & prototypes at all
156
552a9b31 1570.001004
158 - correct idiotic typo if ifndef
159
78160085 1600.001003
161 - internalise definitions for toke.c chunks to save hassle
162 - make NEWSV macro defined via ifndef rather than version check in case
163 of 5.8.8-maint (and 5.8.9)
164
14ab3472 1650.001002
166 - compilation fixes for 5.9.5 and -DDEBUGGING
167
71511651 1680.001001
169 - compilation fixes for 5.8.1+
daf38100 170 - set Makefile.PL to bomb out for <5.8.1
c560c752 171
1720.001000
173 - Initial release to CPAN