Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert ".eager shouldn't flatten" (breaks panda rebootstrap)
This reverts commit 1d05014.
  • Loading branch information
FROGGS committed Mar 11, 2015
1 parent 10dcf35 commit 7b153f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/Any.pm
Expand Up @@ -57,10 +57,10 @@ my class Any { # declared in BOOTSTRAP

proto method eager(|) { * }
multi method eager(Any:U:) {
nqp::p6list(nqp::list(), List, Mu).eager;
nqp::p6list(nqp::list(), List, Bool::True).eager;
}
multi method eager(Any:D:) {
nqp::p6list(nqp::list(self), List, Mu).eager;
nqp::p6list(nqp::list(self), List, Bool::True).eager;
}

proto method hash(|) { * }
Expand Down
1 change: 0 additions & 1 deletion src/core/Parcel.pm
Expand Up @@ -74,7 +74,6 @@ my class Parcel does Positional { # declared in BOOTSTRAP
method flat() { nqp::p6list(nqp::clone($!storage), List, Bool::True) }
method list() { nqp::p6list(nqp::clone($!storage), List, Mu) }
method lol() { nqp::p6list(nqp::clone($!storage), LoL, Mu) }
method eager() { nqp::p6list(nqp::clone($!storage), List, Mu) }

method reverse() {
my Mu $reverse := nqp::list();
Expand Down

0 comments on commit 7b153f5

Please sign in to comment.