On Fri Oct 07 10:24:37 2011, coke wrote:
> On Sun Jul 11 07:07:52 2010, masak wrote:
> > rakudo: sub foo { my $y; our sub bar { say $y } }; bar
> > rakudo 7579f7: ( no output )
> > this is problematic in my model. :/
> > and seemingly in Rakudo's, too :)
> > locally, Null PMC access.
> > * ma
On Fri Oct 07 12:02:32 2011, coke wrote:
> On Tue Aug 03 04:53:23 2010, masak wrote:
> > rakudo: $_ .= ()
> > rakudo 0a8ef0: OUTPUT«./src/pmc/object.pmc:185: failed
> > assertion 'name'Backtrace - [...]
> > * masak submits rakudobug
> > rakudo: my $a; $a .= ()
> > rakudo 0a8ef0: OUTPUT«./src/p
On Sun Oct 09 09:10:12 2011, coke wrote:
> On Thu Aug 12 14:35:18 2010, masak wrote:
> > rakudo: role A { my $!foo; }; role B { my $!foo; };
> > class C does A does B; say 'alive';
>
> 12:08 < [Coke]> rakudo: role A { my $!foo; }; role B { my $!foo; };
> class C
> does A does B; s
# New Ticket Created by Geoffrey Broadwell
# Please include the string: [perl #101022]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=101022 >
As the subject says, nom segfaults on this:
(True but role {}).say
No
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: cbb72731f19f8bcdc51cdc6d4db28ae10cfdf60b
https://github.com/perl6/specs/commit/cbb72731f19f8bcdc51cdc6d4db28ae10cfdf60b
Author: Moritz Lenz
Date: 2011-10-10 (Mon, 10 Oct 2011)
Changed paths:
M S12-o
On Wed Aug 25 04:54:42 2010, masak wrote:
> rakudo: role R { method bar { say "bar" } }; my $foo = class {
> method foo { say "foo" } }; $foo does R; $foo.foo; $foo.bar
> rakudo 3a339e: OUTPUT�Attempt to use rebless_subclass where
> the new class was not a subclass [...]
> * masak submits rakudob
On Sat Aug 08 00:51:28 2009, missingthepoint wrote:
> eval 'widdle()';
> eval 'waddle()';
>
> say "pending: " ~ $!.pending.perl;
>
> ... gives ...
>
> Method 'pending' not found for invocant of class 'Exception'
>
I believe this now needs a try, but is still todo:
19:07 < [Coke]> rakudo: try
On Tue Apr 21 15:00:15 2009, masak wrote:
> rakudo: say %("foo" ~~ /foo/).exists("foo")
> rakudo ad7389: OUTPUT�Method 'exists' not found for invocant
> of class 'Hash' [...]
> that one's funny.
> * masak submits rakudobug
19:10 < [Coke]> rakudo: say %("foo" ~~ /foo/).exists("foo")
19:10 <+p6ev
On Sat Jun 19 04:19:23 2010, masak wrote:
> $b!SomeClass::xyz - would that not conflict with calling a
> private method in a particular superclass of $b?
> rakudo: my $b; $b!SomeClass::xyz # will fail but curious if it
> parses
> rakudo 8a5f38: OUTPUT«Could not find sub !!dispatch_:: in
> main
On Sun Jun 27 14:16:12 2010, masak wrote:
> rakudo: say 9 !% 3
> rakudo d16a2f: OUTPUT«1»
> * masak submits rakudobug
> masak: that's the output i would expect, what were you expecting?
> std: say 9 !% 3
> std 31481: OUTPUT«[31m===[0mSORRY![31m===[0mCan't negate
> % because multiplicati
On Thu Sep 02 20:55:52 2010, masak wrote:
> rakudo: my @a = 1, 2, 3; @a X*= 5; say @a.perl; @a = @a X* 5;
> say @a.perl;
> rakudo 33e94e: OUTPUT«[1, 2, 3][5, 10, 15]»
> Should X*= have worked? If not, how to best scale a vector
> without repeating the vector's array name?
> @b = @a X* 5
> :P
On Tue Jun 15 08:37:28 2010, masak wrote:
> rakudo: my $d; class A {method x { $d }}; for () { sub }
> rakudo 99b6dd: OUTPUT«===SORRY!===Symbol '$ss_SS_S_S__S_S_s'
> not predeclared [...]
> locally, "Symbol '$d' not predeclared in "
> * masak , honsetly confused, submits rakudobug
> std: my $d
On Mon Feb 23 22:36:18 2009, masak wrote:
> rakudo: sub s { try { return 1; CATCH { return 2 } } }; say s
> OK, seems like the try block catches return exceptions.
> rakudo 2a9382: No output (you need to produce output to STDOUT)
> * masak submits rakudobug
19:27 < [Coke]> rakudo: sub s { try {
On Tue Jul 27 18:42:29 2010, coke wrote:
> On Tue Jun 16 08:57:58 2009, masak wrote:
> > rakudo: class A { enum B ; ::c = B::c }; say A::c
> > rakudo ba09b2: OUTPUT«Null PMC access in getprop() [...]
> > * masak submits rakudobug
> > masak: ::c is lexically scoped.
> > pmichaud: meaning it can
On Tue Jun 16 15:15:51 2009, masak wrote:
> rakudo: enum A::B ; constant B = A::B; say B::c
> rakudo 952fe6: OUTPUT�Null PMC access in invoke() [...]
> * masak submits rakudobug
19:35 < [Coke]> rakudo: enum A::B ; constant B = A::B; say B::c
19:35 <+p6eval> rakudo 38907e: OUTPUT«A::B::c»
Closa
On Tue Jul 27 18:45:07 2010, coke wrote:
> On Thu Jul 22 09:58:56 2010, masak wrote:
> > rakudo: class A { method pack($_) { s/c// }};
> > A.new.pack("ccc") # discovered by cono++
> > rakudo 220b67: OUTPUT«Null PMC access in find_method('new')
> [...]
> > * masak submits rakudobug
> >
> > Remove
On Wed Jul 14 11:47:11 2010, masak wrote:
> rakudo: my $a = 2;$a := $a; say $a
> rakudo c8b6cf: ( no output )
> rakudo: my $a = 2;my $b; $b := $a; say $b
> rakudo c8b6cf: OUTPUT«2»
> isn't the first one a bug?
> looks like.
> unless p6eval is acting up again.
> it segfaults locally
> * ma
On Wed Jul 14 11:47:11 2010, masak wrote:
> rakudo: my $a = 2;$a := $a; say $a
> rakudo c8b6cf: ( no output )
> rakudo: my $a = 2;my $b; $b := $a; say $b
> rakudo c8b6cf: OUTPUT«2»
> isn't the first one a bug?
> looks like.
> unless p6eval is acting up again.
> it segfaults locally
> * ma
On Sun Jun 20 07:47:26 2010, masak wrote:
> rakudo: my Array of Int @box
> rakudo ee7620: OUTPUT�Method '!select' not found for invocant
> of class '' [...]
> this currently causes S02-builtin_data_types/declare.rakudo to
> fail two tests early.
> * masak submits rakudobug
19:41 < [Coke]> rakud
On Wed Aug 04 18:16:38 2010, cognominal wrote:
> > ([ [ 5], [3] ].sort: *[0] ).perl
> No candidates found to invoke for method 'sort' on object of type
> 'Array'; available candidates have signatures:
> :(Mu : &by = { ... };; *%_)
>
> > ([ { :pos<5>}, { :pos<4> } ].sort: *. ).perl
> postcircumfix:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 6b021ee247dcda4496e1e04b74ad0fa1025499b6
https://github.com/perl6/specs/commit/6b021ee247dcda4496e1e04b74ad0fa1025499b6
Author: Larry Wall
Date: 2011-10-10 (Mon, 10 Oct 2011)
Changed paths:
M S03-op
On Fri Jul 23 09:27:52 2010, moritz wrote:
> Rakudo 4bf6c0f7bd4fe3be4df2f2f11a8d09147a172ad6 on top of parrot
> r48153
> segfaults when running the sample code from the README in SVG::Plot.
>
> (gdb) run synopsis.pl > syn.svg
> Starting program: /home/moritz/bin/perl6 synopsis.pl > syn.svg
> [Thre
On Sat Mar 06 05:23:08 2010, masak wrote:
> when I write 'our sub foo', the scope of the parameters in the
> signature of foo is a global scope rather than a lexical scope, yes?
> uh, no
> only 'foo' is aliased
> so, how about this?
> rakudo: my $a = 1; sub foo() { my $a = 2; our sub bar($x wh
On Sat Mar 20 11:00:52 2010, masak wrote:
> rakudo: { &^c("$^a, $^b") }.("morning", "perl6ers", &say)
> rakudo 7ccf14: OUTPUT«Not enough positional parameters
> passed; got 3 but expected 4 [...]
> jnthn: help me with this one :) 4?
> rakudo: { &^c("$^a, $^b") }.("morning", "perl6ers", &say, &s
On Tue Mar 23 22:21:10 2010, lue wrote:
> [22:09:43] rakudo: say "\xFDD0"
> [22:09:45] rakudo db0f85: OUTPUT�Malformed string?current
> instr.: 'perl6;PCT;HLLCompiler;evalpmc' pc 972
> (compilers/pct/src/PCT/HLLCompiler.pir:538)?�
> [22:09:52] rakudo: say "\xFFFD"
> [22:09:55] rakudo db0f85:
On Tue Jul 27 20:01:29 2010, coke wrote:
> On Mon Jul 27 11:24:12 2009, moritz wrote:
> > 20:21 <@jnthn> rakudo: my %h; sub h { say "srsly wtf" }; enum Foo
> %h;
> > 20:21 < p6eval> rakudo 4c31fb: OUTPUT«srsly wtfNull PMC access in
> > get_number()in Main (/tmp/RYyqcc1SKd:2)»
> >
On Sun Jun 13 10:07:20 2010, masak wrote:
> okay, someone review what I'm doing and please tell me I'm
> missing something obvious... http://paste.lisp.org/+2DYG
>
> pmichaud@orange:~/rakudo$ cat x
>
> our sub xyz($abc) { say $abc.WHAT; }
>
> xyz(1);
>
> pmichaud@orange:~/rakudo$ ./perl6 x
>
On Mon Aug 02 05:05:56 2010, cognominal wrote:
> > sub a( %h?) { say %h.HOW }; a();
> Method 'HOW' not found for invocant of class 'Hash'
>
> Also I would expect it to DWIM in a code like that
>
> sub a( %h?, *%h1) { say "{%h.defined} {%h1.defined}"; say {%h,
> %h1}.keys };
> a( :b );
>
Diff
On Tue Jun 29 07:01:09 2010, masak wrote:
> on the REPL, when I write 'role R {}', it prints 'R()'. but
> when I do 'class C {}', it prints '!class_init_36'. I'm guessing
> there's a metamodel explanation for that, but it feels Less Than
> Pretty.
> I'm guessing the class code is returning the cl
On Wed Mar 31 14:16:33 2010, masak wrote:
> masak: have you seen this one?
> rakudo: sub twigil:<@> {}; # masak: sry for the delay
> rakudo 872898: OUTPUT�error:imcc:syntax error, unexpected
> '\n' [...]
> * masak submits rakudobug
> diakopter: no, hadn't seen that one :)
> lue gets most of th
On Tue Jul 27 19:57:29 2010, coke wrote:
> On Wed Sep 23 04:39:28 2009, masak wrote:
> > rakudo: class Forest { class Frog { method speak { say
> "ribbit
> > ribbit" } }; has Frog $.frog; method new() { my Frog $frog .= new;
> > self.bless(*, :$frog) } }; Forest.new
> > rakudo 0eaf62: OUTPUT«Null
On Tue Oct 13 16:05:16 2009, masak wrote:
> rakudo: multi sub f(0) {}; multi sub f($n) { say $n;
> callwith($n - 1) }; f(3)
> rakudo 54cfe4: OUTPUT«3Null PMC access in clone() [...]
> * masak submits rakudobug
>
> jnthn++ informs me that the above code is likely not what I want.
> Nevertheless
32 matches
Mail list logo