Skip to content

Commit

Permalink
initial NYI.pm implementation
Browse files Browse the repository at this point in the history
This commit introduces some code/constant duplication; my attempts to factor it out
into a lexical sub or a lexical variable holding a block were not successful -
there former aren't found (see RT #67868), the latter produce Null PMC access
in invoke()
  • Loading branch information
moritz committed Aug 10, 2009
1 parent 39cc848 commit bb1c2be
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/Makefile.in
Expand Up @@ -129,6 +129,7 @@ SETTING = \
src/setting/List.pm \
src/setting/Match.pm \
src/setting/Num.pm \
src/setting/NYI.pm \
src/setting/Object.pm \
src/setting/Operators.pm \
src/setting/Pair.pm \
Expand Down
14 changes: 14 additions & 0 deletions src/setting/NYI.pm
@@ -0,0 +1,14 @@
multi caller(){
die 'caller() is not yet implemented in Rakudo, sorry';
}
multi context(){
die 'context() is not yet implemented in Rakudo, sorry';
}
multi want(){
die 'want() is not yet implemented in Rakudo, sorry';
}
multi runinstead(){
die 'runinstead() is not yet implemented in Rakudo, sorry';
}

# vim: ft=perl6

0 comments on commit bb1c2be

Please sign in to comment.