Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove trailing whitespace
This dif is git diff --ignore-space-at-eol clean.
  • Loading branch information
lizmat committed Jul 15, 2015
1 parent 52458b5 commit 81d569f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/core/Code.pm
Expand Up @@ -14,7 +14,7 @@ my class Code does Callable { # declared in BOOTSTRAP

method signature(Code:D:) { $!signature }

multi method Str(Code:D:) {
multi method Str(Code:D:) {
warn( self.WHAT.perl ~ " object coerced to string (please use .gist or .perl to do that)"); self.name
}

Expand Down
2 changes: 1 addition & 1 deletion src/core/Parameter.pm
Expand Up @@ -258,7 +258,7 @@ my class Parameter { # declared in BOOTSTRAP
if not $.name
and $name eq '$'
and not $rest
and nqp::isnull($!post_constraints)
and nqp::isnull($!post_constraints)
and not $default
and nqp::isnull($!sub_signature) {
$name = '\\';
Expand Down
4 changes: 2 additions & 2 deletions src/core/native_array.pm
Expand Up @@ -130,7 +130,7 @@ class array is Iterable is repr('VMArray') {
:got($s),
:range("0..^{$elems - $o}"),
).fail if $s < 0;

if $SINK {
my @splicees := nqp::create(self);
nqp::push_i(@splicees, @values.shift) while @values;
Expand Down Expand Up @@ -336,7 +336,7 @@ class array is Iterable is repr('VMArray') {
:got($s),
:range("0..^{$elems - $o}"),
).fail if $s < 0;

if $SINK {
my @splicees := nqp::create(self);
nqp::push_n(@splicees, @values.shift) while @values;
Expand Down

0 comments on commit 81d569f

Please sign in to comment.