Elizabeth Mattijsen

Results 149 issues of Elizabeth Mattijsen

Although you might just want to make sure that the deprecation is not noted if you want to support versions of Raku before there was a $*RAKU :-)

The below segfault occurs to me on Rakudo master. Re-compiling Rakudo with an empty line added to e.g. src/core.c/Int.pm6 fixes it. This could be some interaction with switching between branches,...

On my MBP: $ ./rakudo-m --profile -e 'use v6.e.PREVIEW; sprintf("%s","foo") for ^251' # works $ ./rakudo-m --profile -e 'use v6.e.PREVIEW; sprintf("%s","foo") for ^252' # works 50% of the time $...

$ perl6 --profile -e 'for ^1_000 { for ^2 { if $*FOO { } } }' generated an 11MB profile, which appears to be broken.

Or returns a `Failure` if the path does not exist. Why this wssn't done before, I don't quite understand, as the NQP support appears to exist on all backends.

First look up whether there's a lexical symbol for it, and use that if we found it. Should fix #3919

In principle for all string related functions that also have :ignorecase. In this commit, only "starts-with" has been equipped with it. Basically it operates as :ignorecase if the needle does...

Main intent is that these will be used inside an END block to check whether the program is exiting through an exception or not. $*EXIT is set to the currently...

Spotted by gfldex++ at https://irclogs.raku.org/raku-dev/2022-06-27.html#21:28 this commit will honour any (defined) default value of the Array. However, after 12d7d5b48add8347eb119 a test for .List **always** returning Nil was codified in t/spec/S32-array/delete.t...