On Sun, Aug 10, 2008 at 6:38 AM, via RT Carl Mäsak
<[EMAIL PROTECTED]> wrote:
> I added two tests in t/operators/smartmatch.t to exercise the correct
> behaviour.
>
thanks for the tests, but remember rakudo won't run these until
they're moved to t/spec/.
~jerry
On Sun, Aug 10, 2008 at 10:51:39AM -0500, Patrick R. Michaud wrote:
> On Sun, Aug 10, 2008 at 06:40:12AM -0700, Carl Mäsak wrote:
> > r30155:
> > $ ./perl6 -e '//'
> > Syntax error at line 1, near "//"
> >
> > Could be something nicer, in line with "The empty pattern is now
> > illegal." from S05.
On Sun, Aug 10, 2008 at 06:40:12AM -0700, Carl Mäsak wrote:
> # New Ticket Created by "Carl Mäsak"
> # Please include the string: [perl #57770]
> # in the subject line of all future correspondence about this issue.
> # http://rt.perl.org/rt3/Ticket/Display.html?id=57770 >
>
>
> r30155:
> $ ./
Brandon (>), Carl (>>):
>> $ ./perl6 -e '//'
>> Syntax error at line 1, near "//"
>>
>> Could be something nicer, in line with "The empty pattern is now
>> illegal." from S05.
>
> But can that really be easily distinguished from the C operator?
Yes, I believe so. The C operator never occurs where
On 2008 Aug 10, at 9:40, Carl MXXsak (via RT) wrote:
r30155:
$ ./perl6 -e '//'
Syntax error at line 1, near "//"
Could be something nicer, in line with "The empty pattern is now
illegal." from S05.
But can that really be easily distinguished from the C operator?
--
brandon s. allbery [sola
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #57770]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=57770 >
r30155:
$ ./perl6 -e '//'
Syntax error at line 1, near "//"
Could be something nicer, i
Patrick (>):
> 1. I suspect this method really belongs in src/builtins/any-str.pir
>instead of the C class, so that we can do replacements on
>the stringification of any invocant (not just C objects).
>
> 2. The :multi() is likely incorrect, even as a method of C.
>Any object should b
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #57768]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=57768 >
r30155:
$ ./perl6 -e '"o" ~~ /o/' # works
$ ./perl6 -e '"o" !~~ /o/' # fails
Null PMC a
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #57766]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=57766 >
r30155:
$ ./perl6 -e '"a" ~~ /b/' # works
$ ./perl6 -e 'while "a" ~~ /b/ {}' # works
$