Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'nom' of https://github.com/rakudo/rakudo into nom
  • Loading branch information
Mouq committed Mar 7, 2015
2 parents b57f135 + f4ef3c1 commit 8df4617
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/core/Any.pm
Expand Up @@ -16,7 +16,7 @@ my class Any { # declared in BOOTSTRAP
multi method ACCEPTS(Any:D: Mu \a) { self === a }

method exists_key(|c) {
DEPRECATED('EXISTS-KEY',|<2014.03 2015.03>);
DEPRECATED('EXISTS-KEY',|<2015.03 2016.03>);
self.EXISTS-KEY(|c);
}

Expand All @@ -25,7 +25,7 @@ my class Any { # declared in BOOTSTRAP
multi method EXISTS-KEY(Any:D: $) { False }

method delete_key(|c) {
DEPRECATED('DELETE-KEY',|<2014.03 2015.03>);
DEPRECATED('DELETE-KEY',|<2015.03 2016.03>);
self.DELETE-KEY(|c);
}

Expand All @@ -36,7 +36,7 @@ my class Any { # declared in BOOTSTRAP
}

method delete_pos(|c) {
DEPRECATED('DELETE-POS',|<2014.03 2015.03>);
DEPRECATED('DELETE-POS',|<2015.03 2016.03>);
self.DELETE-POS(|c);
}

Expand Down Expand Up @@ -433,7 +433,7 @@ my class Any { # declared in BOOTSTRAP
}

method exists_pos(|c) {
DEPRECATED('EXISTS-POS',|<2014.03 2015.03>);
DEPRECATED('EXISTS-POS',|<2015.03 2016.03>);
self.EXISTS-POS(|c);
}

Expand Down Expand Up @@ -463,7 +463,7 @@ my class Any { # declared in BOOTSTRAP
}

method at_pos(|c) is rw {
DEPRECATED('AT-POS',|<2014.03 2015.03>);
DEPRECATED('AT-POS',|<2015.03 2016.03>);
self.AT-POS(|c);
}

Expand Down Expand Up @@ -513,12 +513,12 @@ my class Any { # declared in BOOTSTRAP
}

method bind_pos(|c) is rw {
DEPRECATED('BIND-POS',|<2014.03 2015.03>);
DEPRECATED('BIND-POS',|<2015.03 2016.03>);
self.BIND-POS(|c);
}

method assign_pos(|c) {
DEPRECATED('ASSIGN-POS',|<2014.03 2015.03>);
DEPRECATED('ASSIGN-POS',|<2015.03 2016.03>);
self.ASSIGN-POS(|c);
}

Expand Down Expand Up @@ -551,7 +551,7 @@ my class Any { # declared in BOOTSTRAP
method none() { none(self.list) }

method at_key(|c) is rw {
DEPRECATED('AT-KEY',|<2014.03 2015.03>);
DEPRECATED('AT-KEY',|<2015.03 2016.03>);
self.AT-KEY(|c);
}

Expand All @@ -568,7 +568,7 @@ my class Any { # declared in BOOTSTRAP
}

method bind_key(|c) is rw {
DEPRECATED('BIND-KEY',|<2014.03 2015.03>);
DEPRECATED('BIND-KEY',|<2015.03 2016.03>);
self.BIND-KEY(|c);
}

Expand All @@ -583,7 +583,7 @@ my class Any { # declared in BOOTSTRAP
}

method assign_key(|c) {
DEPRECATED('ASSIGN-KEY',|<2014.03 2015.03>);
DEPRECATED('ASSIGN-KEY',|<2015.03 2016.03>);
self.ASSIGN-KEY(|c);
}

Expand Down

0 comments on commit 8df4617

Please sign in to comment.