Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix TODO tests by removing code, the best type of development!
  • Loading branch information
lizmat committed Sep 8, 2013
1 parent 57caee6 commit 338cccc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
10 changes: 0 additions & 10 deletions src/core/List.pm
Expand Up @@ -73,16 +73,6 @@ my class List does Positional { # declared in BOOTSTRAP
nqp::p6parcel($rpa, Any);
}

proto method Set(|) {*}
multi method Set() {
set self;
}

proto method Bag(|) {*}
multi method Bag() {
bag self;
}

multi method at_pos(List:D: $pos is copy) is rw {
$pos = $pos.Int;
self.exists($pos)
Expand Down
10 changes: 0 additions & 10 deletions src/core/Parcel.pm
Expand Up @@ -117,16 +117,6 @@ my class Parcel does Positional { # declared in BOOTSTRAP
method fmt($format = '%s', $separator = ' ') {
self.list.fmt($format, $separator);
}

proto method Set(|) {*}
multi method Set() {
set self;
}

proto method Bag(|) {*}
multi method Bag() {
bag self;
}
}


Expand Down

0 comments on commit 338cccc

Please sign in to comment.