Re: Variadic functions questions

2004-03-22 Thread Ilya Martynov
>>>>> "LT" == Leopold Toetsch <[EMAIL PROTECTED]> writes: LT> Ilya Martynov wrote: >> Prints 'P3 is not NULL' LT> Yep, some minutes ago I've fixed it. Thanks for the test, I've added LT> it plus another one to CVS. There is a sm

Re: Variadic functions questions

2004-03-22 Thread Ilya Martynov
>>>>> "JR" == Jens Rieks <[EMAIL PROTECTED]> writes: JR> Hi, JR> On Monday 22 March 2004 10:44, Ilya Martynov wrote: >> Hello all, >> >> 1) First question is how to tell if variadic function recieved 11 or >> 12 or more params (fo

Re: Variadic functions questions

2004-03-22 Thread Ilya Martynov
>>>>> "LT" == Leopold Toetsch <[EMAIL PROTECTED]> writes: LT> Ilya Martynov <[EMAIL PROTECTED]> wrote: >> Hello all, >> 1) First question is how to tell if variadic function recieved 11 or >> 12 or more params (for simplicity let&#x

Variadic functions questions

2004-03-22 Thread Ilya Martynov
$I1 = .param_num loop: if $I1 == 0 goto return # retrieves a parameter by its number $P2 = .param($I1) add $P1, $P2 dec $I1 goto loop return: .pcc_begin_return .return $P1 .pcc_end_return .end -- Ilya Martynov, [EMAIL PROT

Re: Test::More and 'deep' tests

2003-09-10 Thread Ilya Martynov
H> So use Data::Dumper and emit diff -u? GH> IIRC Test::Differences does some like this with exception that it use Text::Diff instead of diff -u. -- Ilya Martynov, [EMAIL PROTECTED] CTO IPonWEB (UK) Ltd Quality Perl Programming and Unix Support UK managed @ offshore prices - http://www.iponweb.net Personal website - http://martynov.org

Re: cvs diff is having problems

2002-07-24 Thread Ilya Martynov
vs/public/parrot/Parrot/#cvs.lock): No such file or directory TG> cvs server: failed to obtain dir lock in repository TG> `/cvs/public/parrot/Parrot' TG> cvs [server aborted]: read lock failed - giving up TG> Both cvs co and cvs update work fine. Looks like you have no permissions to check in. -- Ilya Martynov (http://martynov.org/)

Re: [PATCH] Typo in core.ops

2002-04-29 Thread Ilya Martynov
>>>>> On Mon, 29 Apr 2002 18:58:18 -0400, Jeff <[EMAIL PROTECTED]> said: J> Ilya Martynov wrote: >> >> Index: core.ops >> [..snip..] J> Applied, thanks. I've just found other POD bugs in core.ops Index: core.ops ==

entrytype OP is broken?

2002-04-29 Thread Ilya Martynov
stack and puts it in $1 +If $2 >= 0, gets the type of entry at that depth from the top of the +stack and puts it in $1, with 0 being the top entry. If $2 < 0, then +gets the type of entry |$2| entries from the bottom of the stack and +puts it in $1. =cut -- Ilya Martynov (http://martynov.org/)

[PATCH] Typo in core.ops

2002-04-29 Thread Ilya Martynov
@@ Re-enable GC -=back +=cut op collecton() { if (interpreter->GC_block_level) { -- Ilya Martynov (http://martynov.org/)

[PATCH] Minor doc correction

2002-04-27 Thread Ilya Martynov
, xy Performs a "deeper" copy of y into x, using the vtable appropriate -- Ilya Martynov (http://martynov.org/)

Re: .NET

2001-05-03 Thread Ilya Martynov
st.com/cgi-bin/server.pl'; my $foo = Bar->get_bar; $foo->bar; Another solution is module Class::Tom. I've not tried it so check it yourself: http://search.cpan.org/doc/JDUNCAN/Class-Tom-3.02/Tom.pm. -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Re: .NET

2001-05-02 Thread Ilya Martynov
CKET; $foo->bar; It will work if you have Bar module on both ends. -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | Ilya Martynov (http://martynov.org/)| | GnuPG 1024D/323BDEE6 D7F7 561E 4C1D 8A15 8E80 E4AE BE1A 53EB 323B DEE6 | | AGAVA Software Company (http://www.agava.com/) | -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Re: RFC 63 (v4) Exception handling syntax

2000-08-24 Thread Ilya Martynov
this for historical reasons probably has way PS> too much time on their hands :-) I'm sorry I've missed this part. -- Ilya Martynov AGAVA Software Company, http://www.agava.com

Re: RFC 63 (v4) Exception handling syntax

2000-08-24 Thread Ilya Martynov
s;it merely amounts to C<@EXCEPTION::ISA = 'Exception'>. Often people want to create hierarchies of exception classes. In proposed implementation 'exeption' keyword doesn't allow to create exception classes subclassed from other exception classes. IMHO in such implemen