This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #128260] Fix \substr %h
[perl5.git] / t / op / const-optree.t
2014-11-17 Father ChrysostomosManually revert ‘Remove SvREADONLY_on from op.c:op_cons...
2014-11-17 Father ChrysostomosFix assert fail with my $x; sub() {$x}
2014-11-13 Father ChrysostomosAccount for state vars when const-izing sub(){$x}
2014-11-13 Father ChrysostomosAccount for string eval when const-izing sub(){$x}
2014-11-13 Father ChrysostomosMake sub () { 0; 3 } inlinable once more
2014-11-13 Father ChrysostomosAllow sub():method{CONSTANT} to be inlined
2014-11-13 Father ChrysostomosHandle multiple closures in sub(){$x} const-izing
2014-11-13 Father Chrysostomosconst-optree.t: Correct comment
2014-11-13 Father ChrysostomosDon’t inline sub(){ 0; return $x }
2014-11-13 Father ChrysostomosDon’t inline sub(){ 0; return $x; ... }
2014-11-13 Father Chrysostomosconst-optree.t: More tests
2014-11-13 Father ChrysostomosDon’t inline sub(){my $x; state sub z {$x} $outer}
2014-11-13 Father ChrysostomosDon’t inline sub(){0; $x} if $x changes elsewhere
2014-11-13 Father ChrysostomosRestructure const-optree.t
2014-11-13 Father ChrysostomosDeprecate inlining sub(){$x} if $x is changed elsewhere
2014-11-13 Father ChrysostomosPut sub(){ ... } constant tests in a new file