Update of /cvsroot/lxr/lxr/lib/LXR
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22275/lib/LXR
Modified Files:
Tag: bk-dev-branch
Files.pm
Log Message:
Log parameters for unimplemented functions
Index: Files.pm
===================================================================
RCS file: /cvsroot/lxr/lxr/lib/LXR/Files.pm,v
retrieving revision 1.8.2.2
retrieving revision 1.8.2.3
diff -u -d -r1.8.2.2 -r1.8.2.3
--- Files.pm 13 Feb 2005 19:35:05 -0000 1.8.2.2
+++ Files.pm 13 Feb 2005 23:37:59 -0000 1.8.2.3
@@ -87,17 +87,17 @@
sub getindex {
my $self = shift;
- die '::getindex not implemented';
+ die "::getindex not implemented. Parameters @_";
}
sub isdir {
my $self = shift;
- die '::isdir not implemented';
+ die "::isdir not implemented. Parameters: @_";
}
sub isfile {
my $self = shift;
- die '::isfile not implemented';
+ die "::isfile not implemented. Parameters: @_";
}
sub toreal {
|