Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename lvalue references | Father Chrysostomos | 2014-10-17 | 2 | -7/+7 |
* | [perl #122995] Hang with while(1) in a sub-list | Father Chrysostomos | 2014-10-16 | 1 | -0/+4 |
* | Improve void varop optimisation | Father Chrysostomos | 2014-10-16 | 1 | -1/+8 |
* | Simplify double-nextstate optimisation | Father Chrysostomos | 2014-10-14 | 1 | -1/+7 |
* | aelemfast_lex in aassign_common_vars_aliases_only | Father Chrysostomos | 2014-10-13 | 1 | -1/+16 |
* | Handle aelemfast_lex in S_aassign_common_vars | Father Chrysostomos | 2014-10-13 | 1 | -3/+7 |
* | [perl #122965] aelemfast in list assignment | Father Chrysostomos | 2014-10-13 | 1 | -1/+7 |
* | Optimise "@_" to a single join | Father Chrysostomos | 2014-10-12 | 1 | -1/+6 |
* | opt.t: Test split-to-array optimisation | Father Chrysostomos | 2014-10-12 | 1 | -1/+16 |
* | Test that my($self)=@_ uses no-common-vars optimisation | Father Chrysostomos | 2014-10-12 | 1 | -2/+18 |
* | Fold join to const or stringify where possible | Father Chrysostomos | 2014-10-12 | 1 | -0/+36 |
* | Fix ()=@a=split | Father Chrysostomos | 2014-10-11 | 1 | -1/+4 |
* | infnan: test overflows and underflows. | Jarkko Hietaniemi | 2014-10-11 | 1 | -0/+14 |
* | Extend lex alias detection to foreach, too | Father Chrysostomos | 2014-10-11 | 1 | -1/+7 |
* | Skip no-common-vars optimisation for lex aliases | Father Chrysostomos | 2014-10-11 | 1 | -1/+44 |
* | Make split temporarily refcnt its argument | Father Chrysostomos | 2014-10-11 | 1 | -1/+8 |
* | lvref.t: Remove special TODO code | Father Chrysostomos | 2014-10-11 | 1 | -6/+1 |
* | Store internal state of state vars separately | Father Chrysostomos | 2014-10-11 | 1 | -1/+1 |
* | lvref.t: More list and cond tests | Father Chrysostomos | 2014-10-11 | 1 | -1/+13 |
* | lvref.t: Remove temporary eval & skip | Father Chrysostomos | 2014-10-11 | 1 | -6/+6 |
* | lvref.t: Fix hash elem tests | Father Chrysostomos | 2014-10-11 | 1 | -2/+2 |
* | Handle state vars correctly in ref assignment | Father Chrysostomos | 2014-10-11 | 1 | -8/+18 |
* | lvref.t: Tests for \my assignment and scope exit | Father Chrysostomos | 2014-10-11 | 1 | -1/+23 |
* | Rework lvref.t foreach tests | Father Chrysostomos | 2014-10-11 | 1 | -20/+39 |
* | Fix err message for $cond ? \bad : ... = ... | Father Chrysostomos | 2014-10-11 | 1 | -1/+5 |
* | Subroutine reference assignment | Father Chrysostomos | 2014-10-11 | 1 | -2/+48 |
* | lvref.t: Repeat bad ref tests with list assignment | Father Chrysostomos | 2014-10-11 | 1 | -1/+23 |
* | lvref.t: do-block err msg is no longer to-do | Father Chrysostomos | 2014-10-11 | 1 | -2/+0 |
* | Make \( ?: ) assignment work | Father Chrysostomos | 2014-10-11 | 1 | -1/+3 |
* | lvref.t: Remove unnecessary evals | Father Chrysostomos | 2014-10-11 | 1 | -3/+3 |
* | Get basic $cond ? \$a : \$b = ... working | Father Chrysostomos | 2014-10-11 | 1 | -3/+3 |
* | Assignment to \(@array) | Father Chrysostomos | 2014-10-11 | 1 | -16/+16 |
* | List assignment to array and hash refs | Father Chrysostomos | 2014-10-11 | 1 | -13/+7 |
* | Assignment to \local @array and \local %hash | Father Chrysostomos | 2014-10-10 | 1 | -4/+0 |
* | lvref.t: Tests for localised arrays and hashes | Father Chrysostomos | 2014-10-10 | 1 | -3/+41 |
* | lvref.t: Test assigning non-array to array | Father Chrysostomos | 2014-10-10 | 1 | -1/+13 |
* | Simple \@array and \%hash assignment | Father Chrysostomos | 2014-10-10 | 1 | -6/+14 |
* | lvref.t: To-do tests for hashes | Father Chrysostomos | 2014-10-10 | 1 | -3/+38 |
* | lvref.t: To-do tests for array ref assignment | Father Chrysostomos | 2014-10-10 | 1 | -2/+32 |
* | Assignment to hash element refs | Father Chrysostomos | 2014-10-10 | 1 | -2/+36 |
* | \local $a[$ix] assignment | Father Chrysostomos | 2014-10-10 | 1 | -1/+12 |
* | \@array[@slice] assignment | Father Chrysostomos | 2014-10-10 | 1 | -5/+20 |
* | Assignment to array elem refs | Father Chrysostomos | 2014-10-10 | 1 | -4/+12 |
* | \local $scalar assignment | Father Chrysostomos | 2014-10-10 | 1 | -4/+4 |
* | Make \($x,$y) assignment work | Father Chrysostomos | 2014-10-10 | 2 | -6/+4 |
* | List assignment to lexical scalar refs | Father Chrysostomos | 2014-10-10 | 1 | -7/+9 |
* | Fix assertion failure with ... ? \$a : \$b = ... | Father Chrysostomos | 2014-10-10 | 1 | -2/+7 |
* | Use ‘Can’t modify reference to...’ for refassign, too | Father Chrysostomos | 2014-10-10 | 1 | -1/+7 |
* | lvref.t: Test ‘Can't modify reference to...’ | Father Chrysostomos | 2014-10-10 | 1 | -1/+15 |
* | List assignment to package scalar ref | Father Chrysostomos | 2014-10-10 | 1 | -5/+16 |