[perl #126172] [BUG] .push does something un(ex)-spec'd-ed

2015-10-19 Thread Tobias Leich via RT
The semantics of push got revised in the meantime, and a new method called "append" got added: m: my @a = 1,2,3; my @b; @b.push: @a,; dd @b rakudo-moar fae01f: OUTPUT«Array @b = [[1, 2, 3],]␤» m: my @a = 1,2,3; my @b; @b.push: @a; dd @b rakudo-moar fae01f: OUTPUT«Array @b = [[1, 2, 3],]␤» m:

[perl #126172] [BUG] .push does something un(ex)-spec'd-ed

2015-10-19 Thread Tobias Leich via RT
Added test: https://github.com/perl6/roast/commit/f50149e607 Closing ticket.