[perl #126897] [BUG] Slip objects deparse as List

2018-03-07 Thread Zoffix Znet via RT
On Sun, 13 Dec 2015 13:15:56 -0800, elizabeth wrote:
> so no
> further tests needed
> 
> 
> Liz

And in addition it's covered by tests for another slip bug:
https://github.com/perl6/roast/commit/7eea834e98090b1f571dabe719784eaa0b0207ff

Closing.


[perl #126897] [BUG] Slip objects deparse as List

2018-03-07 Thread Zoffix Znet via RT
On Sun, 13 Dec 2015 13:15:56 -0800, elizabeth wrote:
> so no
> further tests needed
> 
> 
> Liz

And in addition it's covered by tests for another slip bug:
https://github.com/perl6/roast/commit/7eea834e98090b1f571dabe719784eaa0b0207ff

Closing.


[perl #126897] [BUG] Slip objects deparse as List

2015-12-13 Thread via RT
# New Ticket Created by  Zefram 
# Please include the string:  [perl #126897]
# in the subject line of all future correspondence about this issue. 
# https://rt.perl.org/Ticket/Display.html?id=126897 >


$ perl6 -e 'slip(2,3).WHAT.say; slip(2,3).perl.EVAL.WHAT.say'
(Slip)
(List)

The .perl method on Slip ought to produce an expression that specifically
constructs a Slip object.

-zefram


Re: [perl #126897] [BUG] Slip objects deparse as List

2015-12-13 Thread Elizabeth Mattijsen
> On 13 Dec 2015, at 20:53, Zefram (via RT)  
> wrote:
> 
> # New Ticket Created by  Zefram 
> # Please include the string:  [perl #126897]
> # in the subject line of all future correspondence about this issue. 
> # https://rt.perl.org/Ticket/Display.html?id=126897 >
> 
> 
> $ perl6 -e 'slip(2,3).WHAT.say; slip(2,3).perl.EVAL.WHAT.say'
> (Slip)
> (List)
> 
> The .perl method on Slip ought to produce an expression that specifically
> constructs a Slip object.

Thanks for the report.

Fixed with 82f273b65c9133f4389

There is some test breakage, but that will be fixed asap, so no further tests 
needed


Liz