Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add NYI.pm -- a place where we can explicitly put things we know are …
…NYI.
  • Loading branch information
pmichaud committed Jul 1, 2011
1 parent 6cd9c42 commit 83ad0a8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/core/NYI.pm
@@ -0,0 +1,10 @@
# things that are known to be NYI

sub NYI(*@msg) { die @msg };

sub callsame(|$) { NYI "callsame not yet implemented" };
sub callwith(|$) { NYI "callwith not yet implemented" };
sub nextsame(|$) { NYI "nextsame not yet implemented" };
sub nextwith(|$) { NYI "nextwith not yet implemented" };


1 change: 1 addition & 0 deletions tools/build/Makefile.in
Expand Up @@ -168,6 +168,7 @@ CORE_SOURCES = \
src/core/operators.pm \
src/core/metaops.pm \
src/core/terms.pm \
src/core/NYI.pm \
src/core/you_are_here.pm \

DOCS = README CREDITS LICENSE docs/*
Expand Down

0 comments on commit 83ad0a8

Please sign in to comment.