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